Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <title>Title of the document</title> </head> <body> <h1>Example of the ol tag with the "start" attribute:</h1> <ol> <li>List Item</li> <li>List Item </li> <li>List Item </li> </ol> <ol start="30"> <li>List Item</li> <li>List Item</li> <li>List Item</li> </ol> </body> </html>