Lists
You can create a number of different types of lists. See your
text book for more details. Below are two examples of
two types of lists, ordered and unordered:
Ordered List
< HTML >
< HEAD >
< TITLE > Butch is the Greatest Dog < /TITLE >
< /HEAD >
< BODY bgcolor="#ffffff" >
Butch's Vital Statistics
< ol >
< li > breed-Jack Russel
< li > color-white, brown, little black
< li > age-2 years old
< /ol >
< /BODY >
< /HTML >
Unordered List
< HTML >
< HEAD >
< TITLE > Butch is the Greatest Dog < /TITLE >
< /HEAD >
< BODY bgcolor="#ffffff" >
Butch's Vital Statistics
< ul >
< li > breed-Jack Russel
< li > color-white, brown, little black
< li > age-2 years old
< /ul >
< /BODY >
< /HTML >