TutorialKart
index.html
►
Run
Reset
<!DOCTYPE html> <html> <head> <style> ul { list-style-type: square; /* Change bullets to squares */ padding-left: 20px; } ul.no-bullets { list-style-type: none; /* Remove bullets */ } </style> </head> <body> <h2>Styled List</h2> <ul> <li>Milk</li> <li>Eggs</li> <li>Bread</li> </ul> <h2>List without Bullets</h2> <ul class="no-bullets"> <li>Milk</li> <li>Eggs</li> <li>Bread</li> </ul> </body> </html>