Introduction
HTML lists are a fundamental part of web development, used to group and organize related items. They make content more readable and accessible. There are two main types of lists:
- Unordered Lists (
<ul>): Used when the order of items does not matter. These are typically displayed with bullet points. - Ordered Lists (
<ol>): Used when the order of items is important. These are typically displayed with numbers.
In this lab, you will learn how to create both types of lists, add items to them, and even create nested sublists to build more complex structures. By the end, you will have a single HTML page demonstrating these list types.






