Horje

How to Create a list inside a list (a nested list)

A list inside another list.

index.html
Example: HTML
<ul>
  <li>Coffee</li>
  <li>Tea
    <ul>
      <li>Black tea</li>
      <li>Green tea</li>
    </ul>
  </li>
  <li>Milk</li>
</ul>

Output should be:

How to Create a list inside a list (a nested list)




Type:
html
Category:
Web Tutorial
Sub Category:
HTML Tag
Uploaded by:
Admin