No funny alt tags here. This is all business.
   

How do I make links?


Linking to other pages is what HTML was designed for. 'Hypertext' is text that does something when selected.

To create hypertext, use the <a> tag.

<a href="YOUR DESTINATION PAGE"> Click here! </a>.
Anything you put between those tags becomes an active link. If you want to use an image as your link instead of text, replace the 'click here' text with
<img src="image.jpg">.

If you want to get rid of the box around your image link, add

border="0"
inside the image tag. For more information on image attributes, check the More resources page.