Q. What is Unordered Lists?
First, we will build an unordered list. Many times, these lists are also termed as bulleted lists. These lists are characterized by list items which do not have numbers. They are used when points in the list have no particular order. They are delimited by <UL> and </UL> tags. Every point in the list is delimited by <LI> and </LI> tags.
<HTML>
<HEAD>
<TITLE>TUTORSGLOBE.COM</TITLE>
</HEAD>
<BODY BGCOLOR="#FFFFFF">
What I want for Id
<UL>
<LI>a big red truck</LI>
<LI>an aeroplane that flies</LI>
<LI> a nice soft toy</LI>
<LI>a drum set</LI>
<LI>a Walkman</LI>
<LI> extra pocket money</LI>
</UL>
</BODY>
</HTML>
The syntax of the <UL> tag is:
<UL TYPE=""> where TYPE= "DISC", "SQUARE" or "CIRCLE".
<LI> </LI>
</UL>
Bullet appearance can be changed to be round (a dark circle), a circle or a disc depending on value of the TYPE attribute. As displayed in the Figure, list of items are included within <UL> and </UL> tags. Each list item must be preceded with a <LI> tag.