Frequently Asked Questions

How to start an ordered list starting at "50" for example
The start attribute specifies the start value of the first list item in an ordered list.
This value is always an integer, even when the numbering type is letters or romans. E.g., to start counting list items from the letter "D" or the roman number "iii" (Roman Numerals), use start="3". 

The <ol> start attribute

  1. Windows
  2. Linux
  3. Android
  1. PlayStation
  2. Nintendo
  3. Atari
HTML CODE
<!DOCTYPE html>
<html>
<body>

<ol start="7">
<li>Windows</li>
<li>Linux</li>
<li>Android</li>
</ol>


<ol type="a" start="1">
<li>Playstation</li>
<li>Nintendo</li>
<li>Atari</li>
</ol>


</body>
</html>


 Last updated 08/02/2022 2:07 am

Please Wait!

Please wait... it will take a second!