HTML Links
Links are created with the <a> (anchor) tag. The href attribute holds the URL.
Types of Links
- Absolute URL — Full address:
https://example.com/page - Relative URL — Relative to current page:
about.html - Email —
mailto:name@example.com - Phone —
tel:+1234567890 - Anchor — Jump to section:
#section-id
The target Attribute
target="_blank" opens link in a new tab. Always pair it with rel="noopener noreferrer" for security.