Advertisement
Guest User

list items

a guest
Jan 29th, 2017
366
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.92 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>HTML Lists</title>
  6. </head>
  7. <body>
  8. <ol type="I">
  9. <li>
  10. <span>List Item 1</span>
  11. <ol type="a">
  12. <li>Nested item 1.1</li>
  13. <li>Nested item 1.2</li>
  14. </ol>
  15. </li>
  16. <li>
  17. <span>List item 2</span>
  18. <ol type="1">
  19. <li>Nested item 2.1</li>
  20. <li>Nested item 2.2</li>
  21. <ul type="circle">
  22. <li>Nested item 2.2.1</li>
  23. <li>Nested item 2.2.2</li>
  24. <li>Nested item 2.2.3</li>
  25. </ul>
  26. <li>Nested item 2.3</li>
  27. </ol>
  28. </li>
  29. <li>
  30. <span>List item 3</span>
  31. <ul type="disc">
  32. <li>Nested Item 3.1</li>
  33. <li>Nested Item 3.2</li>
  34. <li>Nested Item 3.3</li>
  35.  
  36.  
  37.  
  38. </ul>
  39. </li>
  40.  
  41.  
  42.  
  43.  
  44.  
  45. </ol>
  46. </body>
  47. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement