Links

Anchor Elements

<a href="https://www.theodinproject.com/about">click me</a>
Absolute link Relative link
Components: protocol://domain/path.
An absolute link will always contain the protocol and domain of the destination.
Relative links only include the file path to the other page, relative to the page you are creating the link on.
Example:
<a href="https://www.theodinproject.com/about">click me</a>
Example:
<a href="./pages/about.html">click me</a>