Linking

HTML's single hypertext-related tag is <A>, which stands for anchor. To include an anchor in your document:

Here is a simple hypertext reference in a file called Beertype.html:

    <A HREF="Labatts.html">Blue</A>

displays as Blue

This makes the word Blue the link to the document Labatts.html, which is in the same directory as the first document.

This is called a relative link.

It looks for the location of the file relative to the current document. if you want to link to something that is not located on the same server as your page then you need to to refer to it's URL.