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! -->
1HTML Elements are what make up HTML in general.
2This is a list of the main Html element tags.
3(There are more not included in this list.)
4<!DOCTYPE> Defines the document type
5<html> Defines the root of an HTML document </html>
6<title> Defines a title for the document </title>
7<header> Defines a header for a document or section </header>
8<main> Specifies the main content of a document </main>
9<footer> Defines a footer for a document or section </footer>
10<p> Defines a paragraph </p>
11<a> Defines a hyperlink </a>
12<b> Defines bold text </b>
13<br> Defines a single line break </br>
14<button> Defines a clickable button </button>
15<div> Defines a section in a document </div>
16<footer> Defines a footer for a document or section </footer>
17<h1> to <h6> Defines HTML headings </h1> to </h6>
18<img> Defines an image </img>
19<ol> Defines an ordered list </ol>
20<ul> Defines an unordered list </ul>
21<li> Defines a list item </li>
22<script> Defines a client-side script </script>
23<span> Defines a section in a document</span>
24<table> Defines a table </table>
25<td> Defines a cell in a table</td>
26<th> Defines a header cell in a table </th>
27<tr> Defines a row in a table </tr>