HTML CSS examples for CSS:Quiz
Remove the bullets/markers from the list items.
<!DOCTYPE html> <html> <head> <style> ul {<!-- w w w . j av a 2 s . c om--> list-style-type: none; } </style> </head> <body> <ul> <li>A</li> <li>B</li> <li>C</li> </ul> </body> </html>