Advertisement
Guest User

Untitled

a guest
Mar 18th, 2019
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <style>
  5. ol {
  6. counter-reset: list;
  7. }
  8. ol > li {
  9. list-style: none;
  10. }
  11. ol > li:before {
  12. content: counter(list, lower-alpha) ") ";
  13. counter-increment: list;
  14. font-weight: bold;
  15. }
  16. </style>
  17. </head>
  18. <body>
  19.  
  20. <h2>An Unordered HTML List</h2>
  21.  
  22. <ol>
  23. <li>Coffee</li>
  24. <li>Tea</li>
  25. <li>Milk</li>
  26. </ol>
  27.  
  28. </body>
  29. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement