HTML supports ordered lists, unordered lists, and list items to structure related information. Lists help organize content in a logical and easy-to-read format, such as menus, steps in a process, or grouped items. They are commonly used in navigation menus and structured content sections.

Example: List

<h3>Shopping List</h3>

<ul>
    <li>Milk</li>
    <li>Bread</li>
    <li>Fruit</li>
</ul>

This example shows an unordered list of items.