HTML

Nested List

A nested list is a list placed inside another list to create a hierarchical structure of related items. It is useful for organizing information into main items and their corresponding sub-items. In HTML, a nested list is created by placing an <ol> or <ul> element inside an <li> element of another list.

  <ul>
        <li>BIM
            <ul>
                <li>DSA</li>
                <li>WEB</li>
                <li>Accounting</li>
            </ul>
        </li>
        <li>CSIT</li>
        <li>BCA</li>
    </ul>
Interactive Sandbox
HTML/CSS/JS