Uppercase Roman Numerals for ol Lists in CSS
To set uppercase Roman numerals, set the list-style-type property to upper-roman:
<ol>
<li>list item</li>
<li>list item</li>
<li>list item</li>
<li>list item</li>
<li>list item</li>
</ol>
ol {
list-style-type: upper-roman;
}
: