Advertisement
ujiajah1

form.php

Jun 7th, 2017
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.85 KB | None | 0 0
  1. <style>
  2.   textarea{
  3.    vertical-align: middle;
  4.    display:inline-block;
  5.    position:relative;
  6.   }
  7.   label{
  8.     font-weight: bold;
  9.     color:#00CCCC;
  10.   }
  11.   .name{
  12.     margin-left:2.2em;
  13.     margin-bottom:10px;
  14.   }
  15.   .email{
  16.   margin-left:5em;
  17.   margin-bottom:10px;
  18.   }
  19.   .birth{
  20.     margin-left:3.5em;
  21.     margin-bottom:10px;
  22.   }
  23.   .testi{
  24.     margin-left:2em;
  25.     margin-bottom:20px;
  26.   }
  27.   .btn {
  28.     background: #3498db;
  29.     background-image: -webkit-linear-gradient(top, #3498db, #2980b9);
  30.     background-image: -moz-linear-gradient(top, #3498db, #2980b9);
  31.     background-image: -ms-linear-gradient(top, #3498db, #2980b9);
  32.     background-image: -o-linear-gradient(top, #3498db, #2980b9);
  33.     background-image: linear-gradient(to bottom, #3498db, #2980b9);
  34.     -webkit-border-radius: 28;
  35.     -moz-border-radius: 28;
  36.     border-radius: 28px;
  37.     text-shadow: 7px 9px 5px #71b7ed;
  38.     font-family: Arial;
  39.     color: #ffffff;
  40.     font-size: 10px;
  41.     padding: 10px 20px 10px 20px;
  42.     text-decoration: none;
  43.     margin-left:30em;
  44.   }
  45.  
  46.   .btn:hover {
  47.     background: #3cb0fd;
  48.     background-image: -webkit-linear-gradient(top, #3cb0fd, #3498db);
  49.     background-image: -moz-linear-gradient(top, #3cb0fd, #3498db);
  50.     background-image: -ms-linear-gradient(top, #3cb0fd, #3498db);
  51.     background-image: -o-linear-gradient(top, #3cb0fd, #3498db);
  52.     background-image: linear-gradient(to bottom, #3cb0fd, #3498db);
  53.     text-decoration: none;
  54.   }
  55.   </style>
  56.  
  57.  <? $bln=array("Januari","Februari","Maret","April","Mei","Juni","Juli","Agustus","September","Oktober","November","Desember");
  58.           foreach($bln as $_X){?><option value="<?=$_X;?>"><?=$_X;?></option?><?}?></select>&nbsp;
  59.           <select name="thn">
  60.               <? $thn=1960; do{?><option value="<?=$thn;?>"><?=$thn;?></option><?$thn++;}while($thn <= 2000);?></select><br/>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement