Create an ordered list for Top 3 things cats hate: ( step 15 )

  1. cat nip
  2. laser pointers
  3. lasagna
1 Like

Can you add a link to the exercise and post a question?

If you’re trying to make an ordered list, it’s similar to making an unordered list except instead of the ul element, you use the ol element.

example:

<ol>
   <li>Apples</li>
   <li>Oranges</li>
   <li>Bananas</li>
</ol>
1 Like