About
Explore
Events & Classes
Support Us
Join
Sign In
usertoy
View Project Page
Run
Fullscreen
usertoy s code project
HTML
CSS
JS
<!DOCTYPE html> <html> <head> <style> ul.a { list-style-type: circle; } ul.b { list-style-type: square; } ol.c { list-style-type: upper-roman; } ol.d { list-style-type: lower-alpha; } </style> </head> <body> <p>Example of unordered lists:</p> <ul class="a"> <li>usertoy</li> <li>lilla mardui</li> <li>coderkoko</li> </ul> <ul class="b"> <li>usertoy</li> <li>lilla mardui</li> <li>coderkoko</li> </ul> <p>Example of ordered lists:</p> <ol class="c"> <li>usertoy</li> <li>lilla mardui</li> <li>coderkoko</li> </ol> <ol class="d"> <li>usertoy</li> <li>lilla mardui</li> <li>coderkoko</li> </ol> </body> </html>