Advertisement
dysphafiz_

Untitled

Oct 29th, 2019
154
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.55 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.     <title>Bentuk Umum For</title>
  5.     <style type="text/css">
  6.         body{
  7.             background-color: #191919;
  8.             text-align: center;
  9.             font-size: 26px;
  10.             font-family: verdana;
  11.         }
  12.         form{
  13.             margin-top: 10%;
  14.             margin-left: auto;
  15.             margin-right: auto;
  16.             width: 500px;
  17.             border: 4px skyblue solid;
  18.             background-color: dimgray;
  19.             border-radius: 7px;
  20.         }
  21.     </style>
  22. </head>
  23. <body>
  24. <form>
  25. <?php
  26.     for ($i=1; $i <= 10 ; $i++) {
  27.         echo "halo temanku yang ke - $i";
  28.         echo "<br>";
  29.     }
  30. ?>
  31. </form>
  32. </body>
  33. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement