Complete the code to create a simple ordered list with three items.
<ol>[1]
<li>First item</li>
<li>Second item</li>
<li>Third item</li>
</ol>start attribute instead of type for numbering style.reversed which reverses the order instead of setting numbering style.The type="1" attribute sets the list to use numbers (1, 2, 3...). This is the default for ordered lists.
Complete the code to start the ordered list numbering at 5.
<ol [1]>
<li>Item one</li>
<li>Item two</li>
<li>Item three</li>
</ol>type attribute to set the start number.value or number which are not valid for <ol>.The start="5" attribute tells the browser to begin numbering the list at 5.
Fix the error in the code to correctly reverse the ordered list numbering.
<ol [1]>
<li>Step one</li>
<li>Step two</li>
<li>Step three</li>
</ol>reverse instead of reversed."true" which is not needed.The correct attribute to reverse the numbering in an ordered list is reversed without a value.
Fill both blanks to create an ordered list that uses uppercase letters and starts at letter C.
<ol [1] [2]> <li>Option one</li> <li>Option two</li> <li>Option three</li> </ol>
"C" in start; use the numeric position 3 instead.type.Use type="A" for uppercase letters and start="3" to start at letter C.
Fill all three blanks to create a reversed ordered list starting at 10 with lowercase Roman numerals.
<ol [1] [2] [3]> <li>First</li> <li>Second</li> <li>Third</li> </ol>
type="I" instead of lowercase.reversed attribute.Use reversed to reverse the list, start="10" to start at 10, and type="i" for lowercase Roman numerals.