Lesson 5 of 15

Links

Anchor Tags

Links are created with the <a> (anchor) tag and a href attribute:

<a href="https://example.com">Visit Example</a>

Open in a new tab with target="_blank":

<a href="https://example.com" target="_blank">Open in new tab</a>

Email links use mailto::

<a href="mailto:hello@example.com">Send an email</a>

Link to a page section using an id:

<a href="#section1">Jump to section</a>
<h2 id="section1">Section 1</h2>

Your Task

Create three links:

  1. A regular link to any URL
  2. A link that opens in a new tab (target="_blank")
  3. A mailto: email link
HTML preview loading...
Loading...
Click "Run" to execute your code.