Show Output
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Example of list-style-type Property</title> <style> ol { list-style-type: decimal-leading-zero; } ul { list-style-type: square; } </style> </head> <body> <h2>Ordered List</h2> <ol> <li>Item 1</li> <li>Item 2</li> <li>Item 3</li> </ol> <h2>Unordered List</h2> <ul> <li>Item 1</li> <li>Item 2</li> <li>Item 3</li> </ul> </body> </html>