HTML Basics
HTML Links
Learn how to create clickable links that connect web pages together
🔗
What Are Links?
Links (also called hyperlinks) are what make the web connected! They let you jump from one page to another with a single click.
Code Example:
📄 html
1
2
<!-- A simple link --><a href="https://www.example.com">Click here!</a>Links are created using the <a> tag (which stands for "anchor"). The href attribute tells the browser where to go when the link is clicked.