The ordered list tag "<ol>" has a "type" attribute so you can control
your list's numbering style, allowing you to use numbers (
1), roman numbers (
i,I),
or alpha characters (
a,A).
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<title>Welcome to HTML</title>
</head>
<body bgcolor="#bdbdbd" text="black">
<br />
<h2>Directions for a WetNap<sub>®</sub></h2>
<ol type="i">
<li>Tear open packet</li>
<li>Unfold</li>
<li>Use</li>
</ol>
</body>
</html>
|