Don't like ads? PRO users don't see any ads ;-)
Guest

lists

By: a guest on Jun 18th, 2012  |  syntax: HTML 5  |  size: 0.51 KB  |  hits: 42  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
This paste has a previous version, view the difference. Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. <!DOCTYPE html>
  2. <html>
  3. <head><title>Mis listas</title><meta charset="utf-8"/>
  4. </head>
  5. <body>
  6. <h3>My unordered list</h3>
  7. <ul>
  8. <li>Washer(Lavadora)</li>
  9. <li>Mouse(Raton)</li>
  10. <li>Blender(Licuadora)</li>
  11. <li>Screwdriver(desarmador)</li>
  12. </ul>
  13. <br/><br/>
  14. <h1>My ordered list</h1>
  15. <ol>
  16. <li>Open a tag</li>
  17. <li>Paste the URL:www.p2pu.org</li>
  18. <li>Search HTML5 courses</li>
  19. <li>Register</li>
  20. </ol>
  21. <br/>
  22.  or you can click <a href="https://p2pu.org/es/groups/html-introduction/">here </a>
  23. </body>
  24. </html>