CodeLab
Tutorials For Everyone
Run
<!Doctype HTML> <html> <head> <title>CSS lists Short hand Property Example</title> <style> ul { list-style: square outside url("https://tutsinsider.com/wp-content/themes/tutsinsider/resources/images/searchicon.png"); } </style> </head> <body> <h2>CSS lists Short hand Property Example</h2> <hr> Top 5 Richest Cites in the world:<br> <ul> <li>California</li> <li>Toronto</li> <li>Paris</li> <li>London</li> <li>San Francisco</li> </ul> </body> </html>