Nested List Example
A nested List:
- Coffee
- Tea
- Black tea
- Green tea
- Milk
And the code for above would look like this:
<html>
<body>
<h4>A nested List:</h4>
<ul>
<li>Coffee</li>
<li>Tea
<ul>
<li>Black tea</li>
<li>Green tea</li>
</ul>
</li>
<li>Milk</li>
</ul>
</body>
</html>
No comments yet.