HTML Unordered Lists

HTML Unordered Lists: Grouping Unsequenced Data

An unordered list in HTML is used to group a set of related list items that do not need to appear in a specific sequence. By default, the items in an unordered list are displayed with bullet points.

Here are some key features of HTML unordered lists:

Syntax:

<ul>
    <li>Item 1</li>
    <li>Item 2</li>
</ul>
* **`