HTML Lists

  • Three kinds of lists: ordered, unordered, dictionary
<ol>
  <li>Item</li>
  <li>Item</li>
  <li>Item</li>
</ol>

<ul>
  <li>Item</li>
  <li>Item</li>
  <li>Item</li>
</ul>

<dl>
  <dt>Term</dt>
  <dd>Definition</dd>
  <dt>Term</dt>
  <dd>Definition</dd>
  <dt>Term</dt>
  <dd>Definition</dd>
  <dt>Term</dt>
  <dd>Definition</dd>
</dl>

Inside a ul or ol, the only child elements can be li

Inside a dl, the only child elements can be dt or dd

Last Updated: : 8/24/2019, 10:03:15 AM