Lists

  1. Unordered Lists (bullets): Code:
    <ul>
    <li>(list item)
    <li>(list item)
    </ul>

    Options:
    <li type="circle">

    Types: circle, disc, square - default is disc (filled-in circle)
  2. Ordered Lists (numbered lists or for outlines) - keeps track of the counting for you, so if you insert an item in the middle of the list, you do not need to renumber the list.

    Code:
    <ol>
    <li>(list item)
    <li>(list item)
    </ol>

    Options: - you'll have to define the type on each list item that you want to appear with that type. However, you only need to use the one reference (type="a") - you don't need to keep track by adding type="b", etc.
    <li type="A">

    Types: 1,A,a,I,i - default is regular numbers (1,2,3)

    1. 1
    2. A
    3. a
    4. I
    5. i

  3. Definition Lists

    Definition Lists have an automatic formatting for the purpose of terms and definitions.

    <dt>Definition Term</dt>
    <dd>Definition text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text </dd>


Next --> HR, comment, special characters

Class Outline      Back to Images      View Example Site