HTML Lists in Lists
Description
Many times you want to create sublists or subitems. You can do this by using nested lists!
Nested List Examples
Example:
- Hello from WebCodeGuide!
- Nice list!
- Another item!
- sub list item
- sub list item
- sub list item
- Last list item!
The code:
<ol>
<li>Hello from WebCodeGuide</li>
<li>Nice list!</li>
<li>Another item!
<ol type="a">
<li>sub list item</li>
<li>sub list item</li>
<li>sub list item</li>
</ol>
</li>
<li>Last list item!</li>
</ol>