Header

Main Content

Article

Nested Lists

Nested lists are lists that contain a subset of lists. In order to create a nested list, create a new list where the nested list is needed.

Example

<ol>
  <li>Fruit
    <ul>
      <li>Apples</li>
      <li>Oranges</li>
      <li>Pears</li>
    </ul>
  </li>
  <li>Vegetables
    <ul>
      <li>Broccoli</li>
      <li>Peas</li>
      <li>Corn</li>
   </ul>
  </li>
</ol>