Skip to content

Challenge Create an Ordered List

SaintPeter edited this page · 1 revision
Clone this wiki locally

HTML has a special element for creating ordered lists, or numbered-style lists.

Ordered lists start with a <ol> element. Then they contain some number of <li> elements.

For example:

<ol>
  <li>hydrogen</li>
  <li>helium</li>
</ol>

would create a numbered list of "hydrogen" and "helium".

Something went wrong with that request. Please try again.