Hyperlink in HTML

Anyone can provide some information on Hyperlink in HTML? Could i link one HTML document file with another HTML file? Then what is the syntax?

The syntax:


<a href="another.html">link to another HTML file</a>

You can find lots of stuff in Sitepoint’s own HTML reference.

u can generate the hyperlink through…
anchor tag.
<a href=“www.google.com”>Google</a>

that’s not gonna work the way you think

In HTML hyperlink can be given by using this code :-
<a href="The file or url which has to be hyperlinked ">Text</a>