Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <title>Title of the document</title> </head> <body> <h2>An unordered list</h2> <ul> <li>Pen</li> <li>Pencil</li> <li>Ruler</li> <li>Book</li> </ul> <h2>An ordered list</h2> <ol> <li>Pen</li> <li>Pencil</li> <li>Ruler</li> <li>Book</li> </ol> </body> </html>