NOTICE: This website is no longer updated or supported - as such many of the techniques used to build it may seem antiquated in the modern day. It is preserved for historical reasons only.

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en">

<head>
<title>Ordered List Example</title>
</head>
<body>

<p>Ordered lists can be very simple.</p>

<ol>
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
</ol>

<p>Ordered lists can have a variety of types.</p>

<ol>
<li type="a">Lowercase letters</li>
<li type="A">Uppercase letters</li>
<li type="i">Lowercase Roman numerals</li>
<li type="I">Uppercase Roman numerals</li>
<li type="1">Arabic numerals</li>
</ol>

<p>Ordered lists can start at different values and with different types.</p>

<ol start="10" type="a">
<li>This should be j</li>
<li value="3">This should be c
<ol>
<li>Lists can nest
<ol>
<li>Nesting depth is unlimited</li>
</ol>
</li>
</ol>
</li>
</ol>

</body>

</html>

CLOSE WINDOW | VIEW RENDERED PAGE