HTML LINKS TAGS

LINK TAGS
DESCRIPTION
EXAMPLES

<a href="URL">

</a>

Creates a hyperlink to another web page within the site or to a remote web page elsewhere on the Internet.

Click for example

<a href="mailto:">

</a>

Creates an e-mail link. <a href="003form.htm">Mail Us</a>

<a name ="name"

</a>

Creates a target location within a web page. <a name="top">This is the top of the page </a>

<a href="#name">

</a>

Links to that target from elsewhere on the web page. <a href="#top">Click here to go to the top</a>