Web Analytics

HTML Links

Beginner ~8 min read

Hyperlinks

Links are found in nearly all web pages. Links allow users to click their way from page to page.

HTML links are defined with the <a> tag:

<a href="url">link text</a>

Target Attribute

The target attribute specifies where to open the linked document.

  • _self - Default. Opens in the same window/tab
  • _blank - Opens in a new window or tab
HTML
CSS
JS