Lists
Unordered, ordered and description lists.
Unordered list
- The quick brown fox
- Jumps over
- The lazy dog
<ul>
<li>The quick brown fox</li>
<li>Jumps over</li>
<li>The lazy dog</li>
</ul>
Unordered list — with markers
- The quick brown fox
- Jumps over
- The lazy dog
<ul class="list">
<li>…</li>
</ul>
Ordered list
- The quick brown fox
- Jumps over
- The lazy dog
<ol>
<li>…</li>
</ol>
Description list
- Fox
- A small, omnivorous mammal.
- Dog
- A domesticated carnivore.
<dl>
<dt>Fox</dt>
<dd>A small, omnivorous mammal.</dd>
</dl>