Hyperlinks


this is the code for a hyperlink.

<a href="http://www.whatever u want.com">whatever u want!</a>

The href attribute specifies the destination of a link and must be present in the <a> tag.
just put that in your code and you will have a link to the website you want!

here is what it will look like:

whatever you want!


You can also use an image as a link!

this is simple just put this instead of the text you click on:
<img src="image.jpg"> (see adding images for more info on images)

so it will look like this:

<a href="http://www.whatever.com"><img src="image.jpg"></a>

here is your result:

example