Back
Syntax
Study
Editor
Mode:
HTML
CSS
JavaScript
PHP
Reset
Run »
HTML / CSS / JS
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Ordered Lists</title> </head> <body> <h1>Recipe Steps</h1> <ol> <li>Preheat the oven to 180°C.</li> <li>Mix the dry ingredients.</li> <li>Add wet ingredients and stir.</li> <li>Pour into a greased tin.</li> <li>Bake for 25 minutes.</li> </ol> <h2>Alphabetical</h2> <ol type="A"> <li>Alpha</li> <li>Beta</li> <li>Gamma</li> </ol> <h2>Start from 5</h2> <ol start="5"> <li>Item five</li> <li>Item six</li> </ol> <h2>Reversed countdown</h2> <ol reversed> <li>Ready</li> <li>Set</li> <li>Go!</li> </ol> </body> </html>
Result
Open