Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <title>Title of the document</title> <style> .disc { list-style: disc; } .square { list-style: square; } .armenian { list-style: armenian; } .lower-greek { list-style: lower-greek; } </style> </head> <body> <ul> <li class="disc">Disc bullet</li> <li class="square">Square bullet</li> <li class="armenian">Armenian bullet</li> <li class="lower-greek">Lower-greek bullet</li> </ul> </body> </html>