The HTML <a> element (or anchor element), with its href attribute,
creates a hyperlink to web pages, files, email addresses, locations
in the same page, or anything else a URL can address. Content within
each <a> should indicate the link's destination.
Use:
<a href="https://example.com"> </a>
// <a> tag (Anchor tag) is used to direct you to another
// site. If the target is unpecified it uses the same tab
// and if you specifie "_black" it opens a new tab
<a href="https://www.example.com/" target="_blank"> Text </a>
<!-- <a> element links to the section below -->
<p><a href="#Section_further_down">
Jump to the heading below
</a></p>
<!-- Heading to link to -->
<h2 id="Section_further_down">Section further down</h2>
See <A HREF="http://www.w3.org/">CERN</A>'s information for
more details.
A <A NAME=serious>serious</A> crime is one which is associated
with imprisonment.
...
The Organization may refuse employment to anyone convicted
of a <a href="#serious">serious</A> crime.
The <a> tag defines a hyperlink, which is used to link from one page to another.
The most important attribute of the <a> element is the href attribute, which indicates the link's destination.
By default, links will appear as follows in all browsers:
1. An unvisited link is underlined and blue
2. A visited link is underlined and purple
3. An active link is underlined and red
Creating a link to programmingquest.com:
<a href="https://www.programmingquest.com">Visit ProgrammingQuest</a>