The code that create an uppercase roman numeral list strating at (II)?
a) <OL start = "2" type = "I">
b) < OL start = "2" type = "Il">
c) <OL start = "I" type = "II">
d) < OL start = "2" type = "1">
Answers
Answer:
okkkkkkkkkk.......
Explanation:
oooooookkkkkkk......
A) <OL start="2" type="I">
Is the correct code that creates an uppercase Roman numeral list starting at "II".
<ol start="2" type="I">
<li>II</li>
<li>III</li>
<li>IV</li>
<!-- and so on... -->
</ol>
- The ol tag is used to create an ordered list.
- The start attribute is used to specify the starting number of the list, in this case, "2".
- The type attribute is used to specify the numbering type of the list, in this case, uppercase Roman numerals using the "I" value.
- The li tag is used to create list items, and the values "II", "III", "IV", etc. are added within each li tag to create the list of Roman numerals.
a) <OL start = "2" type = "I">
This code creates an ordered list (<ol>) starting at "2" (start="2") and using uppercase Roman numerals (type="I").
The list items will be numbered starting with "II", "III", "IV", and so on.
b) <OL start = "2" type = "Il">
This code creates an ordered list (<ol>) starting at "2" (start="2") and using lowercase Roman numerals (type="Il").
The list items will be numbered starting with "ii", "iii", "iv", and so on.
c) <OL start = "I" type = "II">
This code creates an ordered list (<ol>) starting at "I" (start="I") and using uppercase Roman numerals (type="II").
The list items will be numbered starting with "II", "III", "IV", and so on.
d) < OL start = "2" type = "1">
This code creates an ordered list (<ol>) starting at "2" (start="2") and using Arabic numerals (type="1").
The list items will be numbered starting with "2", "3", "4", and so on.
To know more: -
https://brainly.in/question/14729172?referrer=searchResults
https://brainly.in/question/16170505?referrer=searchResults
#SPJ3