color-bullet

PHOTO EMBED

Sun Oct 25 2020 08:40:39 GMT+0000 (Coordinated Universal Time)

Saved by @abeerIbrahim #css

ul {
  list-style: none; /* Remove default bullets */
}

ul li::before {
  content: "\2022";  /* Add content: \2022 is the CSS Code/unicode for a bullet */
  color: red; /* Change the color */
  font-weight: bold; /* If you want it to be bold */
  display: inline-block; /* Needed to add space between the bullet and the text */
  width: 1em; /* Also needed for space (tweak if needed) */
}
content_copyCOPY