Horje

How to Create a more complex nested list

A list in a list in a list.

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

Output should be:

How to Create a more complex nested list




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