Read through the list tutorial on tizag and you'll see what is possible.
One thing the tizag tute neglects to mention is that lists can contain other lists within them. A list element can be a whole new list of its own. This is known as a nested list.
For example:
- first list, first element
- first list, second element (also contains a nested list)
- second list, first element
- second list, first element
Which is generated by using the following code:
<ol>
<li>first list, first element</li>
<li>first list, second element (also contains a nested list)
<ol>
<li>second list, first element</li>
</ol>
</li>
</ol>
See if you can reproduce the following page using nested lists:

No comments:
Post a Comment