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>This is a list item.</li>
  <li>This is another list item.</li>
<ol>