You can add a link by using the link tags. An example is below:
<A HREF="http://www.has.hitachi.com.sg">Go To Hitachi Webpage</A>
The A tells the browser that it is a link and the HREF tells the browser where to go when the user clicks on the link.
<A HREF="mailto:hmsasin@singnet.com.sg">E-mail me</A>
This would appear in the browser like any other link:
But when the user clicks on the link an e-mail window pops up. Try clicking on the above e-mail link. If an email window doesn't pop up, it may be that your browser is not set up to allow you to send email.
You need to add the<A NAME> tag to the part of your document you would like to link to.
<A NAME="TOP"> and </A> has been added at top of your page.
Add the following link <A HREF="#TOP"> and </A>.
The # symbol tells your browser to look for the link within the same document
instead of looking for another file.