Rofihimam

Untitled

Sep 25th, 2019
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.67 KB | None | 0 0
  1. <link href="https://fonts.googleapis.com/css?family=Bree+Serif&display=swap" rel="stylesheet">
  2. <style type="text/css">
  3.     table{
  4.         border: 5px outset blue;
  5.         background: linear-gradient(to bottom, #33ccff 0%, #ff3399 100%);
  6.     }
  7.     th{
  8.         font-family: 'Bree Serif', serif;
  9.         font-size: 30px;
  10.     }
  11.     td{
  12.         font-family: 'Bree Serif', serif;
  13.         font-size: 20px;
  14.     }
  15.     input{
  16.         border: 2px inset black;
  17.         background-color: silver;
  18.         font-family: 'Bree Serif', serif;
  19.         font-size: 15px;
  20.         text-align: center;
  21.         border-radius: 50px;
  22.     }
  23.     input#button{
  24.         border: 3px outset blue;
  25.         background-color: silver;
  26.         font-family: 'Bree Serif', serif;
  27.         transition-duration: 0.5s;
  28.         font-size: 15px;
  29.     }
  30.     input#button:hover{
  31.         border: 3px outset blue;
  32.         background: linear-gradient(to bottom, #33ccff 0%, #ff3399 100%);
  33.         font-family: 'Bree Serif', serif;
  34.         font-size: 17px;
  35.     }
  36.     td.batas{
  37.         height: 5px;
  38.         border-radius: 50px;
  39.         background-color: blue;
  40.     }
  41. </style>
  42.  
  43. <form id="studi2" name="studi2" method="post" action="hasil2.php">
  44.     <table>
  45.         <tr>
  46.             <th colspan="5">Menghitung Jumlah Hari</th>
  47.         </tr>
  48.         <tr>
  49.             <td colspan="5" class="batas"></td>
  50.         </tr>
  51.         <tr>
  52.             <td>
  53.                 Bulan :
  54.             </td>
  55.             <td>
  56.                 <input type="number" name="bulan" id="bulan" size="20" autocomplete="off" required="" max="12">
  57.             </td>
  58.             <td>
  59.                 Tahun :
  60.             </td>
  61.             <td>
  62.                 <input type="text" name="tahun" id="tahun" size="20" autocomplete="off" required="">
  63.             </td>
  64.             <td>
  65.                 <input type="submit" name="button" id="button" value="Hitung">
  66.             </td>
  67.         </tr>
  68.         <tr>
  69.             <td class="note" colspan="5">
  70.                 Catatan : Masukan bulan dengan angka 1 - 12!!!
  71.             </td>
  72.         </tr>
  73.     </table>
  74. </form>
Add Comment
Please, Sign In to add comment