Advertisement
dysphafiz_

Untitled

Sep 25th, 2019
147
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.92 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.     <title>Studi Kasus 2</title>
  5.     <style type="text/css">
  6.         body{
  7.             font-family: verdana;
  8.             font-size: 24px;
  9.             background-image: url(gambar/22.jpg);
  10.         }
  11.         table{
  12.             margin-right: auto;
  13.             margin-left: auto;
  14.             border: 3px darkgray outset;
  15.         }
  16.         input.button{
  17.             color: black;
  18.             background: lightgray;
  19.             border: 2px gainsboro outset;
  20.             padding: 5px 20px;
  21.             font-size: 16px;
  22.         }
  23.  
  24.         input.button:hover{
  25.             color: gainsboro;
  26.             background: darkgray;
  27.             border: 2px gainsboro outset;
  28.         }
  29.     </style>
  30. </head>
  31. <body>
  32.     <form method="post" action="proses2.php">
  33.         <table cellspacing="13" cellpadding="5">
  34.             <tr>
  35.                 <td>Bulan</td>
  36.                 <td><input type="text" name="m" required="required"></td>
  37.                 <td>Tahun</td>
  38.                 <td><input type="text" name="y"></td>
  39.                 <td><input class="button" type="submit" name="submit" value="Hitung"></td>
  40.             </tr>
  41.         </table>
  42.     </form>
  43. </body>
  44. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement