HTML links with the a element

The <a> element makes text or an image a link to another resource.

What you will learn

Minimal example

<a href="https://example.com">Visit the site</a> <a href="#details">Read details</a>

The href value tells the browser where the link should go.

Common mistakes