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 answers
0
On
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
On
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: