HTML Tutorial

The language for building web pages.

HTML Links

HTML Links

HTML links are hyperlinks. You can click on a link and jump to another document. Links are defined with the <a> tag using the href attribute.

Link Targets (target attribute):

  • _self - Default. Opens in same tab
  • _blank - Opens in new tab/window
  • _parent - Opens in parent frame
  • _top - Opens in full window

Link Types:

  • Absolute URLs: href="https://www.example.com"
  • Relative URLs: href="page.html"
  • Email: href="mailto:test@test.com"
  • Phone: href="tel:+1234567890"
  • Anchor: href="#section"

Try It Yourself

Edit the code below and click Run to see the result live.

Source Code
Result
Topics