Advertisement
Guest User

Untitled

a guest
Jun 30th, 2016
300
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>First Steps Into PHP</title>
  6. <style>
  7. div {
  8. display: inline-block;
  9. margin: 5px;
  10. width: 20px;
  11. height: 20px;
  12. }
  13. </style>
  14. </head>
  15. <body>
  16. <?php
  17. for ($i = 0; $i<5; $i++){
  18. $rgbColor = $i*51;
  19. for ($y= 0; $y<10; $y++){
  20. echo "<div style='background-color: rgb($rgbColor, $rgbColor, $rgbColor);'></div>";
  21. $rgbColor+=5;
  22. }
  23. echo "<br>";
  24. }
  25. ?>
  26. </body>
  27. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement