Site hosted by Angelfire.com: Build your free website today!
Link Tags:

Basic link tag:

<a href="URL"></a>

Link with a target:

<a href="URL" target="Name of the target"></a>

For example: If there is a frame named main, the link would be as follows:

<a href="URL" target="main"></a>

Link by clicking on a button:

<a href="URL"><img src="URL"></a>

The above tags with display a button with a border inorder to take away this border by adding border=0 within the image tag:

<a href="URL"><img src="URL" border=0></a>

Making anchor link tags:
First, you put the following tag on the part of the page that you want move to.

<a name="name"></a>

Second, you put the following link tag which links to the part of the page(<a name="name"></a>).

<a href="#name">Name of the link</a>