I Create Simple Log In Form Only Html&Css
Log in Form .....
Code.......
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Login Form</title>
<style>
/* body{
background: linear-gradient(#ff1111,#09ff46);
} */
.container{
border: 2px solid ;
width: 290px;
height: 280px;
background: linear-gradient(#ff523d,#09ff46);
background-position: center;
position: relative;
margin: 20% auto;
}
h2{
text-align: center;
}
input{
/* text-align: center; */
margin:10px 50px;
padding: 6px;
background: none;
outline: none;
border: none;
border-bottom: 1px solid #fff;
}
.btn{
font-size: 19px;
padding: 4px;
background: linear-gradient(#09ff46,red);
margin-left: 100px;
}
</style>
</head>
<body>
<div class="container">
<div class="logo"><h2>Log In</h2></div>
<div class="form">
<input type="text" placeholder="User Id " required>
<input type="email" placeholder="Email " required>
<input type="phone" placeholder="Phone " required>
<div>
<button class="btn">Log In</button>
</div>
</div>
</div>
</body>
</html>
No comments