The chief power of HTML comes from 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 to indicate that it is a hypertext link (often shortened to hyperlink or just link).
HTML's single hypertext-related tag is <A>, which stands for anchor. To include an anchor in your document:
Here is a sample hypertext reference to a file called headings.html:
<A HREF="headings.html">Headings</A>
This entry makes the word Headings the hyperlink to the document headings.html, which is in the same directory as the first document.