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-image: url('/pic.jpg'); } </style> </head> <body> <h1>list-style-image property example</h1> <p>The list-style-image property replaces the list-item marker with an image:</p> <ul> <li>nature</li> <li>lake</li> <li>bench</li> </ul> </body> </html>