HTML-Lesson 5-links
Links are pieces of content that take you to a different place on the web. Anything can be a link, it just has to be surrounded with the correct tags.
There are different types of links. This lesson explains the two basic links. Document links and email links.
For a document link use the code:
<a href="page1.html">link</a>
This code creates a piece of text that is linked to a second document. This next link creates a patth to the users email and allows them to send you messages easily.
<a href="mailto:someone@nowhere.com">link</a>
Using the first code you can also create a golobal link. Just change the filename to the website address and be sue to include http://