Advertisement
Rofihimam

Untitled

Sep 25th, 2019
127
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.96 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.     p{
  4.         font-family: 'Bree Serif', serif;
  5.         font-size: 20px;
  6.         color: blue;
  7.     }
  8.     input{
  9.         border: 2px inset black;
  10.         background-color: silver;
  11.         font-family: 'Bree Serif', serif;
  12.         font-size: 15px;
  13.         border-radius: 50px;
  14.         text-align: center;
  15.     }
  16.     input#button{
  17.         border: 3px outset blue;
  18.         background-color: silver;
  19.         font-family: 'Bree Serif', serif;
  20.         transition-duration: 0.5s;
  21.         font-size: 15px;
  22.     }
  23.     input#button:hover{
  24.         border: 3px outset blue;
  25.         background: linear-gradient(to bottom, #33ccff 0%, #ff3399 100%);
  26.         font-family: 'Bree Serif', serif;
  27.         font-size: 17px;
  28.     }
  29. </style>
  30.  
  31. <form id="studi3" name="studi3" method="post" action="hasil3.php">
  32.     <p>Masukan Angka : <input type="text" name="angka" id="angka" size="20" autocomplete="off" required=""></p>
  33.     <input type="submit" name="button" id="button" value="Cek">
  34. </form>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement