Project2 Tutorials

HTML Mini

How do I make a link?

<a href="https://www.google.com">go to google</a>

In a tag you can have something called an attribute, which is basically a way of giving a tag extra information. In this case, an attribute called href is being used to tell the link where to actually link to.

The text in the link is obviously what is displayed.

So, when I click the link, it will send me to https://www.google.com, and the text will be 'go to google'.

Here's how it looks in an actual webpage: go to google

And that's it! Yeah, it was a short tutorial, but that's why it's called a mini! Minis will be way shorter than normal tutorials, and that'll allow me to keep making stuff.

See you in the next one!