There are 3 different types of list elements in HTML
1) Ordered List
<ol>…</ol> - specifies ordered list (using a numbers for each)
<li> - specifies each list item.
The following example shows how to add an Ordered List.
2) Unordered List
<ul>…</ul> - specifies unordered list (using a bullet for each)
<li> - specifies each list item
The following example shows how to add an Ordered List.