With that, we can already make a basic website navigation in HTML.

<body><ul><li><a href="index.html">Home</a></li><li><a href="about.html">About</a></li><li><a href="contact.html">Contact</a></li></ul>
</body>
</html>]]>

Sweet! This is how the most websites allow us to navigate. This will come in handy for sure!

Start with <li> and <a> before adding the content, Home, and the closing tags.