Advertisement
here2share

HTML lists

Aug 16th, 2016
232
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.59 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <style>
  5. ul.a {
  6.     list-style-type: circle;
  7. }
  8.  
  9. ul.b {
  10.     list-style-type: square;
  11. }
  12.  
  13. ol.c {
  14.     list-style-type: lower-alpha;
  15. }
  16. </style>
  17. </head>
  18. <body>
  19.  
  20. <p>Example of unordered lists:</p>
  21. <ul class="a">
  22.   <li>Coffee</li>
  23.   <li>Tea</li>
  24.   <li>Coca Cola</li>
  25. </ul>
  26.  
  27. <ul class="b">
  28.   <li>Coffee</li>
  29.   <li>Tea</li>
  30.   <li>Coca Cola</li>
  31. </ul>
  32.  
  33. <p>Example of ordered lists:</p>
  34. <ol class="c">
  35.   <li>Coffee</li>
  36.   <li>Tea</li>
  37.   <li>Coca Cola</li>
  38. </ol>
  39.  
  40. <ol>
  41.   <li>Coffee</li>
  42.   <li>Tea</li>
  43.   <li>Coca Cola</li>
  44. </ol>
  45.  
  46. </body>
  47. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement