How to create a Nested HTML List

SEOSIKHO 02:11:00

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

Share this

Related Posts

Previous
Next Post »