Lists
About HTML
Colors
Images and Links
Lists
Tables
Index Page
If you want to make a set of bulleted items, you use lists. Two kinds of lists: numbered and bullets.
Bullets lists are called unordered lists. Numbered lists are called ordered lists.
<ol>Ordered List</ol>
<ul>Unordered List&;/ul>
In order to distinguish what items go into the next bullet or number, use <li>Next Item</li>
Examples:
Grocery List
- milk
- cookies
- ice cream
^^An unordered list.
The code for this list looks like:
<ul>Grocery List
<li>milk</li>
<li>cookies</li>
<li>ice cream</li>
</ul>
Favorite Music Groups/Artists
- Coldplay
- Death Cab for Cutie
- Jason Mraz
^^An ordered list. The code for this list looks like:
<ol>
<li>Coldplay</li>
<li>Death Cab for Cutie</li>
<li>Jason Mraz</li>
</ol>
Produce
- Fruit
- Apples
- Blueberries
- Raspberries
- Veggies
- Zuchinni
- Brussel Sprouts
- Eggplant
^^This is a nested list. It is a list with sublists. The code for this list is below:
<ul> Produce
<li>Fruit
<ol>
<li>Apples</li>
<li>Blueberries</li>
<li>Raspberries</li>
</ol>
<li>Veggies</li>
<ol>
<li>Zuchinni</li>
<li>Brussel Sprouts</li>
<li>Eggplant</li>
</ol>
</ul>
Aaaand one more nested list!!
Desserts
- Cake
- Chocolate
- Devil's Food
- Red Velvet (yes it's chocolate)
- Vanilla
- Strawberry
- Shortcake
- Delicious cake with Strawberry pieces in it (name?)
- Cookies
- Chocolate Chip
- Peanut Butter
- No-Bake
- Peanut Butter Blossoms
- Traditional
- Sugar
- Frosted (cancer cookies)
- Snickerdoodles
- Pie
Page Created By: Alice
March 1, 2010