Happy.gif (981 bytes)  Ordered Lists  Happy.gif (981 bytes)

In this table of  ordered list examples, various list examples occur   in the left column and the corresponding  html code  in the adjacent column on the right.

Default numbered lists start with one, but can start with any number. 

  1. First
  2. Second
  3. Third
<ol>
<li>
First </li>
<li>
Second </li>
<li>
Third </li>
</ol>
  1. Fifth item in a list
  2. next
  3. Last item
<ol  START="5">
<li>
Fifth item in a list</li>
<li>next</li>
<li>
Last item</li>
</ol>

Ordered list can begin with list types:  A, a, I, and i.                                                   [Top]

  1. First item.
  2. Next item.
  3. Last item.
<ol type="A">
<li>First item.</li>
<li>
Next item.</li>
<li>
Last item.</li>
</ol>
  1. Item a.
  2. Item b.
  3. Last item.
<ol type="a">
<li>
Item a.</li>
<li>
Item b.</li>
<li>
Last item.</li>
</ol>
  1. First point.
  2. Second point.
  3. Last point.
<ol type="I">
<li>First point.</li>
<li>
Second point.</li>
<li>
Last point.</li>
</ol>
  1. First point.
  2. Second point.
  3. Last point.
<ol type="i">
<li>First point.</li>
<li>
Second point.</li>
<li>
Last point.</li>
</ol>
 

        

Last updated on 01/02/2004  by L.M. Hicks