All Hyperlinks Have Two Parts and Two Extremities

Anchor Tags <a>

The Link Label is the visible element that the user points to and clicks (link labels can be text segments or images)

All hyperlinks are created with the anchor tag:
<a>this is a link label</a>

The Link Destination is the location that the link takes you to when you click on the link

The href attribute is used to specify the link destination:
<a href=“destination.html”>

<a href="urlOfTheDestination">Links Label</a>   => Links Label

The same anchor tag is used for both specifying the start of a link and sometime its end, when we want to arrive in a specific place in the text

<a name="targetID">Where we will arrive</A>