I'm working on a work file and I have to make a numbered list with roman number in html but I don't now how I can do it. Is there someone that can help me?
Numbered list with roman numbers in HTML
4.9k Views Asked by Bryan Savian At
5
There are 5 best solutions below
0

You want to change the type in the ordered list tag:
<ol type="I">
<li>Coffee</li>
<li>Tea</li>
<li>Milk</li>
</ol>
This changes things to upper case roman numerals.
0

U can use css for this ol {list-style-type: upper-roman;}
See https://www.w3schools.com/cssref/pr_list-style-type.asp for more informations.
0

I think you didn't enough research about this subject, with a quick google search I got what you were looking for. Here it is. (type="I")
Anyway, please make some research before posting questions
You can use CSS to solve this using
list-style-type: upper-roman;
:solution using HTML
You can also use HTML with an ordered list (
<ol>
) with thetype
attribute: