extrn

Untitled

Jan 4th, 2018
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.34 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <title>test</title>
  6. <style>
  7.     div.data {
  8.         background: #8CF;
  9.         margin: 4px;
  10.         width: 200px;
  11.         font-size: 2em;
  12.     }
  13. </style>
  14. </head>
  15. <body>
  16. <?php
  17.   for ($i = 0; $i < 5; $i++) {
  18.     echo "<div class=\"data\">$i</div>\n";
  19.   }
  20. ?>
  21. </body>
  22. </html>
Add Comment
Please, Sign In to add comment