<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title> The Page Title Goes Here </title>
</head>
<body>
<ol>
<li>Item number one</li>
<li>Item number two</li>
<li>Item number three</li>
</ol>
</body>
</html>
Here is a example of the numbered ordered list above:
You can also start off the list with any number you want. This list starts with 10, like so:
<ol start="10">
<li>Item number one</li>
<li>Item number two</li>
li>Item number three</li>
</ol>
Here is how it looks:
For capital letters use this:
<ol type="A">
For lower case letters:
<ol type="a">
For capital roman numbers:
<ol type="I">
For lower case roman numbers:
<ol type="i">
© Copyright 2001,2002 Southern Twilight All rights reserved.