16. Valid attribute only supported by
<OL>
tag is
Start
Type
LI
UL
Answers
The HTML <ol> tag represents an ordered list in an HTML document.
The HTML <ol> tag represents an ordered list in an HTML document.An ordered list is a list where the items have been ordered intentionally. The main point of an ordered list is that the list items need to be ordered in order to convey the intended meaning. Changing the order would change the meaning of the list (or document). An example could be a list of marathon runners, listed in order of their finishing times.
The HTML <ol> tag represents an ordered list in an HTML document.An ordered list is a list where the items have been ordered intentionally. The main point of an ordered list is that the list items need to be ordered in order to convey the intended meaning. Changing the order would change the meaning of the list (or document). An example could be a list of marathon runners, listed in order of their finishing times.The basic tag is written like this <ol></ol> with the list item inserted between the opening and closing tags. The <ol> tag is used in conjunction with the <li> tag. The <ol> element represents the actual list, while the <li> tag represents each list item. So, each list item gets it's own <li>.
The HTML <ol> tag represents an ordered list in an HTML document.An ordered list is a list where the items have been ordered intentionally. The main point of an ordered list is that the list items need to be ordered in order to convey the intended meaning. Changing the order would change the meaning of the list (or document). An example could be a list of marathon runners, listed in order of their finishing times.The basic tag is written like this <ol></ol> with the list item inserted between the opening and closing tags. The <ol> tag is used in conjunction with the <li> tag. The <ol> element represents the actual list, while the <li> tag represents each list item. So, each list item gets it's own <li>.An ordered list can be ordered using decimal numbers (eg, 1. 2. 3. ... etc), lower case latin alphabet (eg. a. b. c. ... etc), upper case latin alphabet (eg. A. B. C. ... etc), lower case roman numerals (eg. i. ii. iii. ... etc), or upper case roman numerals (eg. I. II. III. ... etc). You can specify whether the list is ascending (eg, 1. 2. 3. ... etc) or descending (3. 2. 1. ... etc). You can also specify that the list starts at a particular number/numeral/letter. You can also use the CSS list-style-type property to change the marker type.