How to make a register form like facebooks
Posted: Mon May 27, 2013 12:51 am
Hey guys this is something I have been making at home I thought I'll share my snipplet here.

This is the Index.html

This is the Index.html
Code: Select all
This is the mystyle.css<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8 />
<title></title>
<link rel="stylesheet" type="text/css"href="mystyle.css" />
</head>
<body>
<div id="Signup">
<h1>Sign Up</h1>
<h2>It’s free and always will be.</h2>
<form>
<input type="text" placeholder="First Name" id="input">
<input type="text" placeholder="Last Name" id="input"><br>
<input type="email" placeholder="Email" id="input1"><br>
<input type="email" placeholder="Confirm Email" id="input1"><br>
<input type="password" placeholder="Password" id="input1"><br>
<input type="Submit"id="button" value="Sign Up">
<p>By clicking Sign Up, you agree to our Terms and conditions,<br> and these can change at anytime without your knowlage.</p>
</form>
</body>
</html>
Code: Select all
Feel free to post here if you wan't me to write this in a tutorial or explain anything.body ,html{
margin:auto;
background: #edf0f5;
}
#input{
width: 178px;
border-color: #bdc7d8;
border-radius: 5px;
font-size: 18px;
padding: 6px 8px;
border: 1px ;
font-family: 'lucida grande',tahoma,verdana,arial,sans-serif;
}
#input1{
width: 377px;
margin-top: 5px;
border-color: #bdc7d8;
border-radius: 5px;
border: 1px ;
font-size: 18px;
padding: 6px 8px;
font-family: 'lucida grande',tahoma,verdana,arial,sans-serif;
}
#button{
background: -webkit-linear-gradient(top, #79bc64, #578843);
border: 1px solid;
width: 177px;
margin-top: 5px;
height: 30px;
font-size: 19px;
cursor: pointer;
border-radius: 5px;
color: white;
}
h1{
font-family: Tahoma;
font-size: 26px;
line-height: 1px;
}
h2{
font-family: Tahoma;
font-size: 18px;
color: grey;
}
#Signup{
float: right;
margin-right: 15%;
margin-top: 5%;
}
p{
font-size: 13px;
color: grey;
letter-spacing: 1px;
font-family: terminal;
}