PNLdev
Tutorial
Front-end
HTML
reference
CSS
reference
JavaScript
reference
En
English
فارسی
En
English
فارسی
Tutorial
Front-end
HTML
reference
CSS
reference
JavaScript
reference
Run
<!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> <h1>list-style-type property example</h1> <p>Example of unordered lists:</p> <ul class="a"> <li>PHP</li> <li>JS</li> <li>PYTHON</li> </ul> <ul class="b"> <li>PHP</li> <li>JS</li> <li>PYTHON</li> </ul> <p>Example of ordered lists:</p> <ol class="c"> <li>PHP</li> <li>JS</li> <li>PYTHON</li> </ol> <ol class="d"> <li>PHP</li> <li>JS</li> <li>PYTHON</li> </ol> </body> </html>