Type of HTML Lists
In the list of HTML, there are basically two types of lists used in HTML web designing by web developers.
- Unordered List
- Ordered List
An Unordered HTML List
An unordered list starts with the <ul> tag and each list item starts with the <li> tag.
<ul>
<li>Home Work</li>
</ul>
An Ordered HTML List
An ordered list starts with the <ol> tag and each list item starts with the <li> tag.
<ol>
<li>Home Work</li>
</ol>