demoadd.html 606 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <!doctype html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8">
  5. <title>add demo</title>
  6. <style>
  7. div {
  8. width: 60px;
  9. height: 60px;
  10. margin: 10px;
  11. float: left;
  12. }
  13. p {
  14. clear: left;
  15. font-weight: bold;
  16. font-size: 16px;
  17. color: blue;
  18. margin: 0 10px;
  19. padding: 2px;
  20. }
  21. </style>
  22. <script src="https://code.jquery.com/jquery-1.10.2.js"></script>
  23. <script src="demoadd.js"></script>
  24. </head>
  25. <body>
  26. <div></div>
  27. <div></div>
  28. <div></div>
  29. <div></div>
  30. <div></div>
  31. <div></div>
  32. <p>Added this... (notice no border)</p>
  33. <script>
  34. rtl.run();
  35. </script>
  36. </body>
  37. </html>