Ordered

Ordered lists are those where each entry is prepend with an ascending identifier such as numbers, letters, or Roman numerals.

  1. Lather
  2. Rinse
  3. Repeat
  1. Lather
  2. Rinse
  3. Repeat
  1. Lather
  2. Rinse
  3. Repeat

To identify a list, the content must be surrounded by the ordered list tags. ( <ol>...</ol> )

Each “list item” must be surrounded by the list item tags. ( <li>...</li> ).

HTML
<ol>
  <li>List Item</li>
  <li>List Item</li>
  <li>Etc...</li>
</ol>


html list ordered