CodeLab
Tutorials For Everyone
Run
<!Doctype HTML> <html> <head> <title>CSS lists - Removing Default Standards</title> <style> ul { list-style-type: none; padding: 0; margin: 0; } </style> </head> <body> <h2>CSS lists - Removing Default Standards</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>