HTML — HTML Lists
There are two main types of lists in HTML:
- Ordered List (
<ol>
) - numbered - Unordered List (
<ul>
) - bulleted
Each list item is wrapped in an <li>
tag.
<h3>Unordered List</h3>
<ul>
<li>Apple</li>
<li>Banana</li>
</ul>
<h3>Ordered List</h3>
<ol>
<li>First</li>
<li>Second</li>
</ol>