Ordered Lists:
These create
numbered and lettered lists set off from normal text.
needs a closing tag.
<ol> tag has different
types:
<ol type=A> (capitol letters)
<ol type=a> (lowercase letters)
<ol type=1> (for numbers/the default if no type set)
<ol type=I>
(capitol roman numerals)
<ol type=i> (lowercase roman numerals)
You can set start to start at a point that isn't the first character:
<ol start="3"> (this would start at "3")
Then you specify list items individually with an opening <li>
tag.
You can change the type again by putting type="x" and
the character point with the value="x" in the <li> tag. ex.
<li type="A" value="4">
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>work</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body>
<ol>
<li>do the dishes
<li>start cooking
<li>check the soup
<li>set the table
</ol>
<ol type="A">
<li>rearrange
the furniture
<li>paint
the walls
<li>throw out
the pictures
<li>juggle the
monitors
</ol>
<ol type="i" start="5">
<li>run around
the building
<li>do jumping
jacks
<li type="a" value="2">stretch
<li>yoga
</ol>
</body>
</html>