Example:
Eg1 (URL):
Code:
<a href="https://google.com">Google</a> <a href="https://www.youtube.com/">YouTube</a>
Output
Google YouTubeEg2 (HTML file):
Code:
<a href="../index.html">Home Page</a>
Output
Home PageEg3 (phone number):
Code:
<a href="tel:+123456789">+123456789</a>
Output
+123456789Eg4 (Email):
Code:
<a href="mailto:example@gmail.com">Email Id</a>
Output
Email IdEg5 (Selecting HTML element of same page):
Code:
<a href="#main_heading">Go to Top</a>
Output
Go to Top