HTML/CSS - 5

HTML/CSS - 5: Links & Navigation

Learn how to create clickable links! Add links to websites, email addresses, and make a simple navigation menu.

✦ HTML Editor
▶ Live Output

👀 Show Solution
<nav>
  <a href="https://google.com" target="_blank">Google</a>
  <a href="https://youtube.com" target="_blank">YouTube</a>
  <a href="mailto:[email protected]">Email Me</a>
</nav>