1<a href="link.html"> text link </a> <!-- link to html -->
2<a href="google.com" URL> Google </a> <!-- link to site -->
3<a href="link.html"><button> Link </button></a> <!-- Button link -->
4
1<!--Normal-->
2<a href="Url/File">Display Text</a>
3
4<!--Open in New Tab-->
5<a href="Url/File" target="_blank">Display Text</a>
1<a href="https://examplesite.com" target="_blank" rel="noopener noreferrer">
2 Example Link
3</a>
1<!DOCTYPE html>
2<html>
3<body>
4
5<h2>Absolute URLs</h2>
6<p><a href="https://www.w3.org/">W3C</a></p>
7<p><a href="https://www.google.com/">Google</a></p>
8
9<h2>Relative URLs</h2>
10<p><a href="html_images.asp">HTML Images</a></p>
11<p><a href="/css/default.asp">CSS Tutorial</a></p>
12
13</body>
14</html>
15