LINKING
The major power of HTML is its ability to link text and/or an image to another document or section of a document.
A browser highlights the identified text or image with color and/or underlines it to indicate that it is a hypertext link.
HTML’s single hypertext-related tag is <A>, which stands for anchor. To include an anchor in your document:
1. Start the anchor with <A (include a space after the A)
Specify the document your linking to with the parameter:
HREF=“filename” followed by >.
2. Enter the text that will serve as the hypertext link in the current document.
3. Enter the ending anchor tag: </A>