Page 123 - Viva ICSE Computer Studies 7 : E-book
P. 123
3. To change the bullet style to square, the TYPE attribute needs to be set to square as
illustrated below.
<UL TYPE =‘square’>
Defi nition Lists
A defi nition list is a list of items and explanation of the items indented in the next tab position.
It starts with the <DL> tag. Each defi nition starts with the <DD> tag and the title of the defi nition
starts with the <DT> tag.
Syntax: Example: Illustrating Defi nition Lists
<HTML>
<BODY>
..
<DL>
<DT>
<DD>
</DD>
.
.
</DT>
</DL>
..
</BODY>
</HTML>
Nested List
A list within a list is called a nested list. Ordered lists and unordered lists both can have diff erent
levels which can be created by nesting a list within a list. Ordered list can be nested in an
unordered list and vice versa. The verifi cation of the list for proper termination and nesting
order must be done correctly.
111