Advertisement
Guest User

Untitled

a guest
Jun 26th, 2016
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. <!-- Unordered List -->
  2. <ul>
  3. <li>This is an unordered list</li>
  4. <li>This is a second item.</li>
  5. <li>This is a third</li>
  6. </ul>
  7.  
  8. <!-- Ordered Lists -->
  9. <ol>
  10. <li>This is an ordered list</li>
  11. <li>This is a second item.</li>
  12. <li>This is a third</li>
  13. </ol>
  14.  
  15. <ol start="7"> <!-- This list will start counting from the number 7 -->
  16. <li>This is an ordered list</li>
  17. <li>This is a second item.</li>
  18. <li>This is a third</li>
  19. </ol>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement