HTML links are hyperlinks.

You can click on a link and jump to another document.

When you move the mouse over a link, the mouse arrow will turn into a little hand.

==Note: A link does not have to be text. A link can be an image or any other HTML element!==

You can create a hyperlink by simply pressing a+ tab

<a href="LINK_ADDRESS">OBJECT_TO_BE_DISPLAYED</a>

Object doesn’t necessarily means text, it can also mean an image:

<a href="/content/about.html">
  <img src="/images/doggy.jpg" alt="" />
</a>

In the link address section, you can define your address in multiple way

Relative URL

A relative URL specifies the target resource relative to the current resource.

Under the same folder:

<a href="about.html">About Me </a>

Under the sub folder :

<a href="content/about.html">About Me </a>

Under the root folder (1 level) :

<a href="../about.html">About Me </a>

Under the root folder (3 level) :

<a href="../../../about.html">About Me </a>

Absolute URL