Nested HTML List
1 Open Notepad and past the code
<!DOCTYPE html>
<html>
<body>
<ul><li>First item</li>
<li>Second item
<ul><li>First Sub-item</li>
<li>Second Sub-item</li>
</ul></li>
</ul>
</body>
</html>
2 Save as nested.html
Output
- First item
- Second item
- First Sub-item
- Second Sub-item
1 comments:
commentspanu
Reply