<html>
<head>
<style>
ul.demo {
list-style-type: none;
margin: 0;
padding: 0;
}
</style>
</head>
<body>
<p>Default list:</p>
<ul>
<li>Coffee</li>
<li>Tea</li>
<li>Coca Cola</li>
</ul>
<p>Remove bullets, margin and padding from list:</p>
<ul class="demo">
<li>Coffee</li>
<li>Tea</li>
<li>Coca Cola</li>
</ul>
</body>
<!-- Mirrored from www.w3schools.com/css/tryit.asp?filename=trycss_list-style_none by HTTrack Website Copier/3.x [XR&CO'2014], Wed, 21 Dec 2022 16:49:08 GMT -->
</html>