Lists are used everywhere on the web. This list is an unordered list meaning that the order of this list is unimportant.
The < UL> Tag
      The < UL> tag basically tells the browser, "Buddy I've got an unordered list coming so listen up." We open up the unordered list like this:
< UL>
</UL>
      All that does however, is say that we have an unordered list. Lists are made up of what? Items. We place the items that make up the list in between the < UL> and </UL> tags.
      The TYPE property can be inlcude in the opening tag (< UL>). Each value that TYPE equals gives a different bullet style for that list. All just a matter of personal preference and taste.
< UL type = "sqaure"> Bullets are square
< UL type = "circle"> Bullets are open circles
< UL type = "disc"> Bullets are filled circles
Pants
Shirts
Socks
Pants
Shirts
Socks
Pants
Shirts
Socks
Rate Tutorial:
Rated: 0 out of 5 Votes: 0
Pretty cool, eh? Well, that's it for unordered lists. Try making some on your own for practise. If you are ready then let's learn how Ordered Lists work.