Friends I think with the help of this page I can help you learning the html and some css designing...
For more help you can contact on Facebook

Tuesday 23 July 2013

An attractive login form..I think.
Colors can be changed acc to your choice..
Check it out

<html>
<head>
<title>

</title>
</head>
<style>
‪#‎loginform‬
{
background-color:rgba(324,100,231,0.4);
padding:20px;
position:absolute;
-webkit-border-radius:10px;
}
form
{
-webkit-border-radius:10px;
background-color:rgba(123,121,123,0.2);
padding:10px;
}
input
{
-webkit-border-radius:5px;
border:none;
padding:3px;
}
‪#‎formone‬:hover
{
-webkit-transform:scale(1.09);
box-shadow:0px 0px 5px white;
}
input:hover
{
box-shadow:0px 0px 5px black;
}
</style>
<body>
<div id="loginform">
<form id="formone">
<input type="text" name="uname" placeholder="Username Here" size="28"><br>
<input type="password" name="password" placeholder="************">
<input type="submit" name="submit" value="Login">
</form>
</div>
</body>
</html>

No comments:

Post a Comment