HTML Link
we use the tag <A>, which stands for the word anchor.This is a container element.The text between opening <A> tag and closing </A> tag is called the hypertext link.
For example, suppose you want to create a link to a document ‘My new document.html’ in the current directory.This will be done as follows:
<a href="my document.html">My Link</a>
This cammand makes the words My Link the hyperlink to the document my new document.html.When you click the link, the document my new document.html will be opened.