Links Tutorial
Made by: Nick
The <a> Tag
The code to place a link is simple:
<a href="URL">Link Text
This tag is called an anchor, which is followed here by a hyperlink reference attribute (it tells the link the path of where to go after it is clicked).
For example:
<a href="http://www.freedivs.com/">Free Divs</a>
Would create:
Free Divs
Image Links
It does not have to be text inside the anchor like the previous example, it can be an image like this one:
<a href="http://www.freedivs.com/"><img src="http://www.freedivs.com/gfx/promote/redani.gif" alt="Free Divs, the place to really customise your profile" /></a>
Would create:![]()


