Lesson 3: List Tags
(Nested Lists)

HTML permits you to nest list tags to create a list within a list. The "type" and "start" attributes will only affect the list in which you place them.

<!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>
<ol type="A">
<li>Bell</li>
<li>Cayenne</li>
<li>Chile
   <ul type="disc">
   <li>Serrano</li>
   <li>Jalapano</li>
   <li>Habanero</li>
   </ul>
</li>
<li>Szechuan</li>
</ol>
</body></html>