<html>
<head>
<style>
ul {
list-style: none; /* Remove HTML bullets */
padding: 0;
margin: 0;
}
li {
padding-left: 16px;
}
li::before {
content: "•"; /* Insert content that looks like bullets */
padding-right: 8px;
color: blue; /* Or a color you prefer */
}
</style>
</head>
<body>
<h1>The content Property</h1>
<ul>
<li>Coffee</li>
<li>Tea</li>
<li>Coca Cola</li>
</ul>
</body>
<!-- Mirrored from www.w3schools.com/cssref/tryit.asp?filename=trycss_content_list-bullets by HTTrack Website Copier/3.x [XR&CO'2014], Mon, 27 Jan 2020 03:00:46 GMT -->
</html>