Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <title>Title of the document</title> <style> ul.list-styles { list-style-type: square; } ul.list-styles2 { list-style-type: hebrew; } </style> </head> <body> <h2>List-style-type property example</h2> <ul class="list-styles"> <li>Appetizers</li> <li>Main Course</li> <li>Salads</li> </ul> <ul class="list-styles2"> <li>Cold Drinks</li> <li>Hot Drinks</li> <li>Ice-Creams</li> </ul> </body> </html>