List markers
Changing bullets and numbering using list-style-type
.
HTML
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>List markers</title>
<style>
ol { list-style-type: lower-roman; }
ul { list-style-type: square; }
ul ul { list-style-type: circle; }
</style>
</head>
<body>
<ul>
<li>This
<ul>
<li>This type of this</li>
<li>That type of this
<ul>
<li>This type of that type of this</li>
<li>That type of that type of this</li>
<li>The other type of that type of this</li>
</ul>
</li>
<li>The other type of this</li>
</ul>
</li>
<li>That</li>
<li>The Other</li>
</ul>
<ol>
<li>The first thing</li>
<li>The second thing</li>
<li>The third thing</li>
</ol>
<!-- Link back to HTML Dog: -->
<p><a href="http://www.htmldog.com/examples/"><img src="http://www.htmldog.com/badge1.gif" alt="HTML Dog"></a></p>
</body>
</html>