Advertisement
here2share

HTML list-style-image

Aug 16th, 2016
221
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.22 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <style>
  5. ul {
  6.     list-style-image: url('http://i.imgur.com/7OOVZTN.png');
  7. }
  8. </style>
  9. </head>
  10. <body>
  11.  
  12. <ul>
  13.   <li>Coffee</li>
  14.   <li>Tea</li>
  15.   <li>Coca Cola</li>
  16. </ul>
  17.  
  18. </body>
  19. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement