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 { list-style: square inside url("/pic.jpg"); } </style> </head> <body> <h1>list-style property example</h1> <p>The list-style is a shorthand property for all the list properties.</p> <ul> <li>naute</li> <li>lake</li> <li>bench</li> </ul> </body> </html>