How To Make A Link In Html

how to add a link in html
<a href="link" > name of the link </a>
html links
<a href="url">link text</a>
How to make a link in html
<h1><a herf="https://www.google.com/">Go To google</a></h1>
how to make links in html
<a href="link.html"> text link </a> <!-- link to html -->
<a href="google.com" URL> Google </a> <!-- link to site -->
<a href="link.html"><button> Link </button></a> <!-- Button link -->
how do you make a link in html5
<a herf="www.google.com">
a href to other site
<a href="https://examplesite.com" target="_blank" rel="noopener noreferrer">
Example Link
</a>

Leave a Comment