Links and Basic Navigation
Hyperlinks with <a>
Use the <a href="..."> tag to create clickable links.
<a href="https://example.com">Visit Example</a>
Links to Other Pages
For internal pages, use relative paths:
<a href="about.html">About Us</a>
Navigation Menus
You can wrap links inside a list to create a simple navigation bar:
<ul> <li><a href="index.html">Home</a></li> <li><a href="about.html">About</a></li> </ul>