Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <title>Der Titel des Dokuments</title> </head> <body> <h2>Beispiel einer nummerierten Liste</h2> <ol style="list-style-type: upper-roman"> <li>Erfrischungsgetränke</li> <li>Heiße Getränke</li> <li>Speiseeis</li> </ol> <ol style="list-style-type: hebrew"> <li>Coca-Cola</li> <li>Fanta</li> <li>Eistee</li> </ol> <ol style="list-style-type: decimal"> <li>Coca-Cola</li> <li>Fanta</li> <li>Eistee</li> </ol> </body> </html>