HTML Ordered List

An ordered list starts with the <ol> tag. Each list item starts with the <li> tag.

Example:

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

This will render as:

  1. Coffee
  2. Tea
  3. Milk