Skip to content
HTML

リンク、アンカー、ダウンロード

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>