HTML Links are found in nearly all web pages. Links allow users to click their way from page to page.
The HTML <a> tag defines a hyperlink, The most important attribute of the <a> element is the
href attribute, which indicates the link's destination. The link text is the part that will be visible to the reader.Clicking on the link text, will send the reader to the
specified URL address.
The title attribute specifies extra information about an element. The information is most often shown as a tooltip
text when the mouse moves over the element.
Example
<a href="https://phpcoderspoint.com/html/" title="Go to HTML Tutorial">HTML Tutorial</a>