Ordered Lists(continued)

The following example shows the HTML markup of an alphabetic ordered list, and the results displayed by your browser.

html markup

<OL type="A" start="3">
<LI>This is the first item in an ordered list. The list uses capital letters, starting with C, the third letter of the alphabet.
<LI>This is the second item in the numbered list.
</OL>

browser displays

  1. This is the first item in an ordered list. The list uses capital letters, starting with C, the third letter of the alphabet.

  2. This is the second item in the numbered list.