Advertisement
abhijit5893

HTML Lists

Jul 24th, 2012
30
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.28 KB | None | 0 0
  1. <html>
  2. <head>
  3.     <title>HTML Lists</title>
  4. </head>
  5. <body>
  6. <h2>Ordered lists</h2>
  7. <ol>
  8. <li>List item 1</li>
  9. <li>List item 2</li>
  10. <li>List item 3</li>
  11. </ol>
  12. <h2>Unordered lists</h2>
  13. <ul>
  14. <li>List item A</li>
  15. <li>List item B</li>
  16. <li>List item C</li>
  17. </ul>
  18. </body>
  19. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement