Capital Latin Letters for ol Lists in CSS
If you set the list-style-type property to upper-alpha, the numbering will be in capital Latin letters:
<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-alpha;
}
: