Nested Lists

To include one list inside another you simply put the inner list inside one of the list items of the outer list. You can mix and match different list types, and have multiple levels of nesting.

<ul>
  <li>This is item 1.
    <ol>
      <li>This is item 1.1.</li>
      <li>This is item 1.2.</li>
    </ol>
  </li>
  <li>This is item 2.</li>
</ul>
  • This is item 1.
    1. This is item 1.1.
    2. This is item 1.2.
  • This is item 2.

<-- Previous Page

Definition Lists

Next Page -->

Images