Skip to content
HTML

Links, Âncoras e Download

Criar links internos, externos, âncora, email, telefone e download em HTML.

#link#navigation#beginner

Code

html
<!-- Internal link -->
<a href="/about">About</a>

<!-- External link (open in new tab) -->
<a href="https://example.com" target="_blank" rel="noopener noreferrer">
  External
</a>

<!-- Anchor link -->
<a href="#section-1">Jump to section</a>

<!-- Email and phone links -->
<a href="mailto:[email protected]">Email Alice</a>
<a href="tel:+15551234567">Call us</a>

<!-- Download link -->
<a href="/report.pdf" download>Download PDF</a>

<!-- Image link -->
<a href="/post/1">
  <img src="thumb.jpg" alt="Post thumbnail" />
</a>