Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <title>Der Titel des Dokuments</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 Aufzählungspunkt</li> <li class="square">Square Aufzählungspunkt</li> <li class="armenian">Armenischer Aufzählungspunkt</li> <li class="lower-greek">Lower-greek Aufzählungspunkt</li> </ul> </body> </html>