Answers for "roman numeral list html"

4

ol types

<ol type="1">
  <li>The list items will be bulleted with numbers (default)</li>
</ol>
<ol type="A">
  <li>The list items will be bulleted with Capital(UPPERCASE) letters</li>
</ol>
<ol type="a">
  <li>The list items will be bulleted with with small(lowercase) letters</li>
</ol>
<ol type="I">
  <li>The list items will be bulleted with with Capital(UPPERCASE) Roman letters</li>
</ol>
<ol type="i">
  <li>The list items will be bulleted with with small(lowercase) Roman letters</li>
</ol>
Posted by: Guest on June-07-2020
0

ordered list with roman numerals html

<ol type="i">
  <li> lowercase roman numerals </li>
</ol>

<ol type="I">
  <li> uppercase roman numerals </li>
</ol>
Posted by: Guest on October-05-2021

Browse Popular Code Answers by Language