Advertisement
BadhoNex

FPI (Login)

Nov 18th, 2018
257
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.60 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.     <title>Login</title>
  5.  
  6. <style type="text/css">
  7. body{
  8.     font-family: Arial, Helvetica, sans-serif;
  9.     font-size: 15px
  10.     line-height: 1.0;
  11.     padding: 0;
  12.     margin: 0;
  13.     background-color: #f4f4f4
  14.      }
  15.  
  16.  
  17.  .box{
  18.         padding: 30px;
  19.     width: 25%;
  20.     margin: auto;
  21.     margin-top: 10%;
  22.     margin-bottom: 10px;
  23.     background: #410082;
  24.     color: #ffffff;
  25.     align: center;
  26.    
  27.     border-radius: 30px;
  28.      }
  29.  
  30.      .box h1{text-align: center;
  31.         font-size: 25px;
  32.         font-weight: bold;
  33.  
  34.  
  35.      }
  36. .dot{
  37.     padding: 2px;
  38.     background: #ffffff;
  39. }
  40.  
  41. td{
  42.     padding: 12px;
  43.     text-align: left;
  44.     font-size: 20px;
  45.  
  46. }
  47.  
  48. td [type="text"]{
  49.  font-size: 10px;
  50.  padding: 5px;
  51.  color:#e8491d;
  52.  font-weight: bold;
  53. }
  54.  
  55. td [type="text"]:hover{
  56.     color:#e8491d;
  57.     font-weight: bold;
  58.     padding: 10px;
  59. }
  60.  
  61. .sub2 input{
  62.     padding: 3px;
  63.     width: 80px;
  64.     height: 30px;
  65.     background: #e8491d;
  66.     color: #ffffff;
  67.     border: 0;
  68.     font-weight: bold;
  69. margin: 8px;
  70.  
  71. }
  72. .sub2 input:hover{
  73.     color:#35424a;
  74.     background: #ffffff;
  75.  
  76. }
  77.  
  78. </style>
  79.  
  80. </head>
  81. <body>
  82.  
  83.  
  84. <div class="box"><h1>
  85.     User Login
  86. </h1><div class="dot"></div>
  87. <br/>
  88.  
  89.  
  90. <table align="center">
  91.     <tr>
  92.         <td><font style="Helvetica">Username:</font></td><td> <input type="text" placeholder="Username"></td>
  93.    
  94.        
  95. </tr>
  96. <tr><td>
  97. Password:</td><td> <input type="text" placeholder="Password"></td>
  98. </tr>
  99.  
  100. </table>
  101. <div class="sub2" align="center"><input type="submit" value="Submit"/><input type="reset" value="Reset"/></div>
  102.  
  103. </body>
  104. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement