HTML Links

Links are found on almost every webpage. Links allow users to click their route from page to page.

HTML Links - Hyperlinks


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 Links - Syntax

HTML tag <a> defines a link. It has the following syntax:

<a href="url">link text</a>


Example

This example shows how to create a link to W3Schools.com:

<a href="https://www.w3schools.com/">Visit W3Schools.com!</a>