HTML Tutorial
HTML Forms
HTML Graphics
HTML Media
Links are found on almost every webpage. Links allow users to click their route from page to page.
HTML links are hyperlinks.
You can click the link and skip to another document.
If you move the mouse over the link, the mouse arrow will turn into a small hand.
HTML tag <a>
defines a link. It has the following syntax:
This example shows how to create a link to W3Schools.com:
<a
href="https://www.w3schools.com/">Visit
W3Schools.com!</a>