Tuesday, 21 December 2021

Html Colouring bullets

 <!DOCTYPE html>

<html>

<head>

   <title> Try It Yourself </title>

   <style type="text/css">   

      ul {

         list-style: none;

      }

      li::before {

         content: "->";

         color: gold;

      }

   </style>

</head>

<body>   

   <ul>

      <li> Some data here. </li>

      <li> Some data here. </li>

      <li> Some data here. </li>

   </ul>

</body>

</html>

0 Comments:

Post a Comment

Subscribe to Post Comments [Atom]

<< Home