About 550 letters
About 3 minutes
HTML has two types of lists: ordered lists <ol>
and unordered lists <ul>
. List items are marked with the <li>
tag.
<p>Ordered List</p>
<ol>
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
</ol>
<p>Unordered List</p>
<ul>
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
</ul>
HTML ListsOrdered List
- Item 1
- Item 2
- Item 3
Unordered List
- Item 1
- Item 2
- Item 3
Created in 5/16/2025
Updated in 5/21/2025