Numbered (Ordered) Lists

A numbered (ordered) list offers the advantage of automatically numbering the list items in the order that they appear. So if you change the order of items in your HTML file, you don't have to renumber the list. A numbered list is written:

<OL>

<LI> oranges
<LI> peaches
<LI> grapes

</OL>

The output is:

  1. oranges
  2. peaches
  3. grapes


[Back] Back to Formatting Lists
[Back] Back to Styles and Text Formatting
[Up] Up to the Contents page