If you fail to define the "type" attribute in nested lists,
different browsers will automatically choose varying bullet
and numbering styles.
<!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">
<b>Types of Peppers</b>
<ul>
<li>Bell</li>
<li>Cayenne</li>
<li>Chile
<ul>
<li>Serrano</li>
<li>Jalapeno</li>
<li>Habanero</li>
</ul>
</li>
<li>Szechuan</li>
</ul>
</body></html>
|