Editor Arrow Download Open
<!DOCTYPE html> <html> <head> <title>CSS unordered list style type</title> </head> <body> <ul style="list-style-type: square;"> <li>Item one</li> <li>Item two</li> </ul> <ul style="list-style-type: lower-roman;"> <li>Item one</li> <li>Item two</li> </ul> </body> </html>
  Preview Arrow