Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <title>Title of the document</title> </head> <body> <h3>A numbered list:</h3> <ol> <li>Peach</li> <li>Apricot</li> <li>Banana</li> <li>Strawberry</li> </ol> <h3>An alphabetized list:</h3> <ol type="A"> <li>Peach</li> <li>Apricot</li> <li>Banana</li> <li>Strawberry</li> </ol> <h3>An alphabetized list (lowercase letters):</h3> <ol type="a"> <li>Peach</li> <li>Apricot</li> <li>Banana</li> <li>Strawberry</li> </ol> <h3>A numbered list (Roman numerals):</h3> <ol type="I"> <li>Peach</li> <li>Apricot</li> <li>Banana</li> <li>Strawberry</li> </ol> <h3>A numbered list (lowercase Roman numerals):</h3> <ol type="i"> <li>Peach</li> <li>Apricot</li> <li>Banana</li> <li>Strawberry</li> </ol> </body> </html>