styles.html 599 B

1234567891011121314151617181920
  1. <html>
  2. <head>
  3. <style>
  4. body {
  5. padding: 50px;
  6. }
  7. </style>
  8. </head>
  9. <body>
  10. <div style="color:red;background:green"></div>
  11. <div style="color:red;background:green;"></div>
  12. <div style="color:red;background:green"></div>
  13. <div style="color:red;background:green;"></div>
  14. <div style="color:red;background:green"></div>
  15. <div style="color:red;background:green;"></div>
  16. <div style="color:red;background:green;"></div>
  17. <div style="color:red;background:green;"></div>
  18. <div style="color:red;background:green;"></div>
  19. </body>
  20. </html>