HTML Lists

Types of Lists

HTML supports ordered lists (<ol>) and unordered lists (<ul>).

Creating Lists

List items are added with the <li> tag inside either <ol> or <ul>.

Nested Lists

<ul>
  <li>Item 1
    <ol>
      <li>Subitem A</li>
      <li>Subitem B</li>
    </ol>
  </li>
  <li>Item 2</li>
</ul>