Home     About HTML     Color     Images and Links     Lists     Tables    

Lists

-Unordered lists are made up of bullet points
-Ordered lists are made up of numbers.
-ol = ordered list, ul = unordered list. You tag it like this: < ul > then according to where you want the bullet points, you but < li > followed by < /li > and at the end you put < /ul >

--------------------
-Form for an Unordered List!:
<ul>
<li > item </li>
<li> item </li>
<li > item </li>
</ul>

- Example:


--------------------
-Form for an Ordered List!:
-Example:
<ol>
<li > item </li>
<li> item </li>
<li > item </li>
</ol>

- Example of ordered list:
    Favorite Music
  1. 10,000 Maniacs
  2. Avril Lavigne
  3. Green Day

--------------------
-Form for a Nested List!: (same as above, layering ordered and unordered tags)
<ol>
<li > item </li>
     <ul>
     <li > item </li>
     <li> item </li>
     <li > item </li>
     </ul>
<li> item </li>
<li > item </li>
</ol>
-Two Tiered Example:
-My Three Tiered Example
Created by:
MeReDiTh
March 2010