A hyperlink is a group of words that can be clicked to navigate to another page.
When you place the cursor over the link in the webpage, the arrow will turn into litle hand.
The most important attribute of hyperlink is href attribute, which indicates the link's destination.
<a href="URL">Your Text</a>
URL: Uniform Resource Locator a: Anchor href: Hypertext Reference
<a href="www.ittutorials.in">Visit ittutorials.in</a>
The target attribute specifies where to open the linked document.
<a href="url" target="_blank">Text</a>
<a href="www.ittutorials.in" target="_blank">Visit ittutorials.in</a>
Link to an element with a specified id within a page:
<a href="#top">Go to top</a>
Link to an email address with a specified subject
<a href="mailto:someone@example.com?Subject=Hi%20again">Send email mail!</a>
Link to a JavaScript
<a href="javascript:alert('Hello World!');">Execute JavaScript</a>