Advertisement
Militsa

18. Fifty Shades of Grey

Jan 3rd, 2018
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.51 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. <!--Write your PHP Script here-->
  17. <?php
  18. for($i=0; $i<255; $i+=51) {
  19.     for($j=$i; $j<$i+50; $j += 5) {
  20.         echo "<div style=\"background-color: rgb($j, $j, $j);\"></div>";
  21.     }
  22.     echo "<br>";
  23. }
  24. ?>
  25. </body>
  26. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement