/Responsive Web Design

16. Create an Ordered List

HTML has another special element for creating ordered lists, or numbered lists.

Ordered lists start with an opening

    element, followed by any number of
  1. elements. Finally, ordered lists are closed with the
tag.

For example:

<ol>
  <li>Garfield</li>
  <li>Sylvester</li>
</ol>

would create a numbered list of "Garfield" and "Sylvester".


Challenge

Create an ordered list of the top 3 things cats hate the most.


Prev: 15. Create a Bulleted Unordered List

Next: 17. Create a Text Field