Animated Login Form Design using HTML and CSS

<html>

<head>
<title>Login Page</title>

<style type="text/css">
*{
box-sizing: border-box;
}
body{
margin: 0;
background-color: yellow;
}
input[type=text],input[type=password] {
padding: 20px 15px;
border-radius: 20px;
width: 100%;
border: 2px solid Indigo;
margin-left: 5%;
}
button {
padding: 20px 15px;
border-radius: 20px;
width: 40%;
border: 2px solid Indigo;
margin-left: 35%;
background-color: yellow;
}
.login {
padding: 35px 35px;
border-radius: 200px;
width: 30%;
background-color:  DeepPink;
box-shadow: 10px 10px 10px 10px LightGreen;
margin-top: 8%;
}
h2 {

text-align:  center;
color: yellow;
}
</style>

</head>

<body>
<form>
<table class ="login" align="center" cellspacing="8" cellpadding="8">
<tr>
<td>
<h2>Login</h2>
</td>
</tr>

<tr>
<td>
<input type="text" name="uname" placeholder="Username">
</td>
</tr>
<tr>
<td>
<input type="password" name="upass" placeholder="Password">
</td>
</tr>
<tr>
<td>
<button type="submit">Login</button>
</td>
</tr>
</table>
</form>
</body>

</html>

Comments

Popular posts from this blog

WebPage Design Using HTML and CSS

How to design webpage using HTML And CSS

Convert XML In To Java Using Java