1<!-- a tags in html are link tags that hold hyperlinks to other
2 pages, or anchors in the same page -->
3<a href='https://www.google.com'>Click here to visit Google.com</a>
4
5<!-- the href attribute specifies where the link should lead -->
6<!-- hope it helped! -->
1The HTML <a> element (or anchor element), with its href attribute,
2creates a hyperlink to web pages, files, email addresses, locations
3in the same page, or anything else a URL can address. Content within
4each <a> should indicate the link's destination.
5
6Use:
7
8<a href="https://example.com"> </a>