Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <title>Title of the document</title> <style> ul.no-bullets { list-style-type: none; margin: 0; padding: 0; } </style> </head> <body> <h3>W3Docs</h3> <p>Our books (with bullets):</p> <ul> <li>Learn HTML</li> <li>Learn CSS</li> <li>Learn Javascript</li> <li>Learn Git</li> </ul> <p>Our books: (without bullets)</p> <ul class="no-bullets"> <li>Learn HTML</li> <li>Learn CSS</li> <li>Learn Javascript</li> <li>Learn Git</li> </ul> </body> </html>