Home Html List
List
How to Put List in Html

There are types of lists available in Html Ordered List, Unordered List, and Definition List.

Unordered List

For Unordered List use <ul> tag (unordered list) along with the <li> tag (for each list item)
Unordered list written by the following way:

<ul>
<li>Coffee</li>
<li>Milk</li>
</ul>

Result will be

  • Coffee
  • Milk

Ordered List

For ordered list use <ol> tag along with the <li> tag.
Ordered list written by the following way:

<ol>
<li>Coffee</li>
<li>Milk</li>
</ol>

Result will be

  1. Coffee
  2. Milk