Page 121 - Viva ICSE Computer Studies 7 : E-book
P. 121
Example: Illustrating Ordered Lists
There are some attributes that are specifi cally used for ordered list.
The START Attribute
The START attribute takes a number as value. It specifi es the number (or letter) with which the
list would start as illustrated in the following examples.
<OL START = 20> This will start the numbering from 20.
<OL START = 5> This will start the numbering from 5.
Example: Illustrating List Attributes
Reversed Attribute
The Reversed attribute is a Boolean attribute. When present, it specifi es that the list order
should be descending (9, 8, 7, ...), instead of ascending (1, 2, 3, ...). By default, <OL REVERSED>
starts from the total number of list items and counts down to 1. So, there is no need to specify
Start unless you want something diff erent to happen.
109