Nested list sample 2 |
|
|
These are html tags you type.
<ul>
<li>
first level
<ul>
<li>
second level
<ul>
<li>
third level
<ul>
<li>
fourth level
</li>
<li>
fourth level
</li>
</ul>
</li>
<li>
third level
</li>
</ul>
</li>
<li>
second level
</li>
</ul>
</li>
<li>
first level
<ul>
<li>
second level
</li>
<li>
second level
</li>
</ul>
</li>
</ul>
Note:
|
The resulting web page shows multiple levels of unordered lists.
|