Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <title>Title of the document</title> </head> <body> <h2>List counting control</h2> <p>By default, the numeration in an ordered list starts from 1. Use the start attribute to start counting from a specified number.</p> <ol start="40"> <li>Pen</li> <li>Pencil</li> <li>Copybook</li> </ol> <ol type="I" start="40"> <li>Pen</li> <li>Pencil</li> <li>Copybook</li> </ol> </body> </html>