-
Notifications
You must be signed in to change notification settings - Fork 0
/
1.9.html
78 lines (65 loc) · 1.95 KB
/
1.9.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<!DOCTYPE html>
<head>
<link rel="stylesheet" href="9.css">
</head>
<body>
<div class="container">
<div class="title">Event Registration Form</div>
<form action="#">
<div class="user-details">
<div class="input-box">
<span class="details">First Name</span>
<input type="text" placeholder="firstname">
</div>
<div class="input-box">
<span class="details">Surname Name</span>
<input type="text" placeholder="surname">
</div>
<div class="input-box">
<span class="details">Email</span>
<input type="text" placeholder="e.g. [email protected]">
</div>
<div class="input-box">
<span class="details">Phone</span>
<input type="text" placeholder="phone number">
</div>
<div class="input-box">
<span class="details">Age</span>
<input type="number">
</div>
<div class="input-box">
<span class="details">Password</span>
<input type="text" placeholder="password">
</div>
<div class="input-box">
<span class="details">Confirm Password</span>
<input type="text" placeholder="re-enter password">
</div>
</div>
<div class="gender-details">
<input type="radio" name="gender" id="dot-1">
<input type="radio" name="gender" id="dot-2">
<input type="radio" name="gender" id="dot-3">
<span class="gender-title">Gender</span>
<div class="category">
<label for="dot-1">
<span class="dot one"></span>
<span class="gender">Male</span>
</label>
<label for="dot-2">
<span class="dot two"></span>
<span class="gender">Female</span>
</label>
<label for="dot-3">
<span class="dot three"></span>
<span class="gender">Other</span>
</label>
</div>
</div>
<div class="button">
<input type="submit" value="Register">
</div>
</form>
</div>
</body>
</html>