SIGN IN FORM IN HTML AND CSS

 





<html>  
<head>  
<meta name="viewport" content="width=device-width, initial-scale=1">  
<style>  
body{  
  font-family: Calibri, Helveticasans-serif;  
  background-colorpink;  
}  
.container {  
    padding50px;  
  background-colorlightblue;  
}  
  
input[type=text], input[type=password], textarea {  
  width100%;  
  padding15px;  
  margin5px 0 22px 0;  
  displayinline-block;  
  bordernone;  
  background#f1f1f1;  
}  
input[type=text]:focusinput[type=password]:focus {  
  background-colororange;  
  outlinenone;  
}  
 div {  
            padding10px 0;  
         }  
hr {  
  border1px solid #f1f1f1;  
  margin-bottom25px;  
}  
.registerbtn {  
  background-color#4CAF50;  
  colorwhite;  
  padding16px 20px;  
  margin8px 0;  
  bordernone;  
  cursorpointer;  
  width100%;  
  opacity0.9;  
}  
.registerbtn:hover {  
  opacity1;  
}  
</style>  
</head>  
<body>  
<form>  
  <div class="container">  
  <center>  <h1>  Sign In Form</h1> </center>  
  <hr>  
  <label> Firstname </label>   
<input type="text" name="firstname" placeholder"Firstname" size="15" required />   
<label> Middlename: </label>   
<input type="text" name="middlename" placeholder="Middlename" size="15" required />   
<label> Lastname: </label>    
<input type="text" name="lastname" placeholder="Lastname" size="15"required />   
<div>  
<label>   

<div>  
<label>   
Gender :  
</label><br>  
<input type="radio" value="Male" name="gender" checked > Male   
<input type="radio" value="Female" name="gender"> Female   
<input type="radio" value="Other" name="gender"> Other  
  
</div>  
<label>   
Phone :  
</label>  
<input type="text" name="country code" placeholder="Country Code"  value="+91" size="2"/>   
<input type="text" name="phone" placeholder="phone no." size="10"/ required>   

<label for="User Name"><b>Username</b></label>  
 <input type="text" placeholder="User Name" name="user name" required>  
   
<label for="email"><b>Email</b></label>  
 <input type="text" placeholder="Enter Email" name="email" required>  
  
    <label for="psw"><b>Password</b></label>  
    <input type="password" placeholder="Enter Password" name="psw" required>  
  
    <label for="psw-repeat"><b>Re-type Password</b></label>  
    <input type="password" placeholder="Retype Password" name="psw-repeat" required>  
    <button type="submit" class="registerbtn">Sign In</button>    
</form>  
</body>  
</html>  

Post a Comment

0 Comments