-
Notifications
You must be signed in to change notification settings - Fork 19
/
formbook.html
48 lines (40 loc) · 1.13 KB
/
formbook.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<!DOCTYPE html>
<html>
<head>
<title>Form</title>
<style>
#heading1{
font-size:30px;
background-color:rgb(32,81,162);
color:white;
}
#center{
padding:0 0 0 500px;
}
.sub{
margin-left: 15%;
}
</style>
</head>
<body>
<div id="heading1" align="center"> Formbook (Vidit)
</div>
<div id="center">
<h2>Create a new account</h2>
It's quick and easy<br><br>
<form>
<input type="text" placeholder="First name">  
<input type="text" placeholder="Last name"><br><br>
<input type="tel" lenght=10 placeholder="Mobile no."><br><br>
<input type="text" placeholder="E-mail"><br><br>
<input type="password" placeholder="New password" name="psswrd"><br><br>
<input type="password" placeholder="Confirm password" required name="psswrd"><br><br>
Gender<br><input type="radio" name="gender">Male   
<input type="radio" name="gender">Female   
<input type="radio" name="gender">Custom<br><br>
Birthday
<br><br>
<div class="sub"><input type="submit" value="Sign Up"></div>
</div>
</body>
</html>