HTML <a>: The Anchor element
The <a> HTML element (or anchor element) creates a hyperlink to other web pages, files, locations within the same page, email addresses, or any other URL.
Try it
<p>You can reach Michael at:</p>
<ul>
<li><a href="https://example.com">Website</a></li>
<li><a href="mailto:m.bluth@example.com">Email</a></li>
<li><a href="tel:+123456789">Phone</a></li>
</ul>
Attributes
href: The URL that the hyperlink points to.target: Specifies where to open the linked document.rel: Specifies the relationship between the current document and the linked document.download: Specifies that the target will be downloaded when a user clicks on the hyperlink.
Interactive Example
Click on the links below to see different types of anchor usage: