Lists

Lecture Overview

Unordered Lists

    <ul>
       <li>Order</li>
       <li>Doesn’t</li>
       <li>Matter</li>
    </ul>

Styling of the Item Marker

Discs (bullets)

  <ul style="list-style-type:disc;">
    <li>Coffee</li>
    <li>Ginger Ale</li>
    <li>Capri Sun</li>
  </ul>

Circles (empty)

  <ul style="list-style-type:circle;">
    <li>Coffee</li>
    <li>Ginger Ale</li>
    <li>Capri Sun</li>
  </ul>

Ordered Lists

  <ol>
    <li>Coffee</li>
    <li>Ginger Ale</li>
    <li>Capri Sun</li>
  </ol>

Styling of the Item Markers

Numbers

  <ol type="1">
    <li>Coffee</li>
    <li>Ginger Ale</li>
    <li>Capri Sun</li>
  </ol>

Uppercase Letters

  <ol type="A">
    <li>Coffee</li>
    <li>Ginger Ale</li>
    <li>Capri Sun</li>
  </ol>

Uppercase Roman Numerals

    <ol type="I">
      <li>Coffee</li>
      <li>Ginger Ale</li>
      <li>Capri Sun</li>
    </ol>

Lowercase Roman Numerals

    <ol type="i">
      <li>Coffee</li>
      <li>Ginger Ale</li>
      <li>Capri Sun</li>
    </ol>

Definition Lists

    <dl>
      <dt>Coffee</dt>
        <dd>- black hot drink</dd>
      <dt>Capri Sun</dt>
        <dd>- clear cold fruity drink</dd>
    </dl>