Lists

Ordered and unordered lists with proper spacing and nesting support.

Unordered Lists

  • First item
  • Second item
  • Third item
<ul>
  <li>First item</li>
  <li>Second item</li>
  <li>Third item</li>
</ul>

Ordered Lists

  1. First step
  2. Second step
  3. Third step
<ol>
  <li>First step</li>
  <li>Second step</li>
  <li>Third step</li>
</ol>

Nested Lists

  • Main item
    • Sub-item one
    • Sub-item two
  • Another main item
    1. Numbered sub-item
    2. Another numbered sub-item
<ul>
  <li>Main item
    <ul>
      <li>Sub-item one</li>
      <li>Sub-item two</li>
    </ul>
  </li>
  <li>Another main item
    <ol>
      <li>Numbered sub-item</li>
      <li>Another numbered sub-item</li>
    </ol>
  </li>
</ul>

Description Lists

HTML
HyperText Markup Language - the structure of web pages.
CSS
Cascading Style Sheets - the presentation of web pages.
JavaScript
The programming language of the web.
<dl>
  <dt>HTML</dt>
  <dd>HyperText Markup Language - the structure of web pages.</dd>

  <dt>CSS</dt>
  <dd>Cascading Style Sheets - the presentation of web pages.</dd>

  <dt>JavaScript</dt>
  <dd>The programming language of the web.</dd>
</dl>