How to create a list without bullets in HTML
In this tutorial, we are going to see how to create a list without bullets in HTML. You can easily use the CSS list-style-type attribute with the value “none” to remove the bullets from the list (<ul>). Here is an example:
[st_adsense]
Source Code:
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Create a list without bullets in HTML </title> <style> ul{ list-style-type: none; } </style> </head> <body> <ul> <li>Lorem ipsum</li> <li>Lorem ipsum</li> <li>Lorem ipsum</li> <li>Lorem ipsum</li> </ul> </body> </html>
Result |
---|
|