Page 114 - C_GPT _V4 _class_7
P. 114
<LI> Add 1/4 cup of milk. </LI>
<LI> Pour the tea into a cup. </LI>
<LI> Add a tea bag. </LI>
</OL>
</BODY>
</HTML>
However, the list style can be specified by the TYPE attribute, like 1, a, A, i, or I.
Unordered Lists
An unordered list is also called a bulleted list. This type of list is generally used to display random
items that are never required to be placed in a sequential manner. The <UL> tag is used to define an
unordered list with any of the following bullets using the TYPE attribute or list-style-type property:
Disc
o Circle
Square
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>
CodeGPT (Ver. 4.0)-VII
112

