Last Updated:  May 3, 2009

Visual Reference: Lists

Table of Contents

Overview
  1. The Beginning
  2. Learning HTML
  3. Expanding Your HTML
  4. Better by Design
  5. "Color Me Happy!"
  6. CSS Enterprise
  7. Roll Over, CSS
  8. Domain Registration and Hosting
  9. Fire Up, FireFTP!  (Loading Files)
  10. "Video Only," Please
  11. Tools
  12. Portfolio: Bringing It All Together
  13. Visual Reference:
    1. HTML
    2. Images and Links
    3. HTML Template
    4. IE Specific CSS
    5. Meta Tags
    6. Special Characters
    7. HTML Lists
    8. CSS
    9. CSS Shorthand
    10. Colors

Unordered List

<ul>
     <li>Item #1</li>
     <li>Item #2</li>
     <li>Item #3</li>
</ul>

Ordered List

<ol>
     <li>Item #1</li>
     <li>Item #2</li>
     <li>Item #3</li>
</ol>

Definition List

<dl>
     <dt>Word #1</dt>
                <dd>Description of this word.</dd>

     <dt>Word #2</dt>
                <dd>Description of this word.</dd>

     <dt>Word #3</dt>
                <dd>Description of this word.</dd>
</dl>


VR-Special Characters > VR-HTML Lists > VR-CSS