1The HTML <a> element (or anchor element), with its href attribute,
2creates a hyperlink to web pages, files, email addresses, locations
3in the same page, or anything else a URL can address. Content within
4each <a> should indicate the link's destination.
5
6Use:
7
8<a href="https://example.com"> </a>
1The <a> tag defines a hyperlink, which is used to link from one page to another.
2
3The most important attribute of the <a> element is the href attribute, which indicates the link's destination.
4
5By default, links will appear as follows in all browsers:
6
71. An unvisited link is underlined and blue
82. A visited link is underlined and purple
93. An active link is underlined and red
10
11Creating a link to programmingquest.com:
12 <a href="https://www.programmingquest.com">Visit ProgrammingQuest</a>