Page 103 - TP_Plus_v4_Class7
P. 103
Unordered Lists
An unordered list is also called bulleted list. This type of list is generally used to display random items
which never require to place in a sequential manner. The <UL> tag is used to define an unordered list.
Just like ordered list, <LI> tag is used to define an item in the unordered list too.
The default bullet style is Disc in HTML. Let us use the <UL> tag to create an unordered list:
<HTML>
<HEAD> <TITLE> Unordered List or Bulleted List </TITLE> </HEAD>
<BODY>
<B> Winter Clothes </B>
<HR>
<UL STYLE="list-style-type:disc;">
<LI> Sweaters </LI>
<LI> Woollen Caps </LI>
<LI> Gloves </LI>
<LI> Jackets </LI>
</UL>
</BODY>
</HTML>
#Lists and Tables in HTML5 101

