HyperLinks in HTML
The HyperLinks in HTML are defined with <a> tag. This HyperLinks are used to navigate to the another page/website. In <a> tag we have href attribute where we have to give the external link. When the content between the <a> </a> clicked then it redirect to the link which we defined in the href atttribute.
Example
<!DOCTYPE html>
<html>
<body>
<h1>HTML Links</h1>
<p><a href="https://www.blog.manoharmakarla.com/">Manohar Makarla blog</a></p>
</body>
</html>
Tags:
HTML