-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
121 lines (88 loc) · 3.96 KB
/
index.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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>Form</title>
</head>
<body>
<div class="alert">
<h2>Form submitted successfully</h2>
</div>
<div class="outer">
<div class="outer-inner">
<div class="form">
<h2>Registration Form</h2>
<form id="registration" autocomplete="off">
<input type="text" placeholder="First Name" required>
<input type="text" placeholder="Last Name" required>
<input type="email" placeholder="Email id" required>
<input type="password" placeholder="Password" required>
<div class="gender">
<div class="content">
<label>Gender</label>
</div>
<div class="radio">
<label>Male</label>
<input type="radio" name="r1" value="Male" required>
<label>Female</label>
<input type="radio" name="r1" value="Female" required>
</div>
</div>
<div class="select">
<select>
<option value="">Choose your City</option>
<option value="Chandigarh">Chandigarh</option>
<option value="Delhi">Delhi</option>
<option value="Mumbai">Mumbai</option>
<option value="Kolkata">Kolkata</option>
<option value="Banglore">Banglore</option>
</select>
</div>
<div class="dob">
<label>Date of Birth</label>
<input type="date" required><br>
</div>
<div class="file">
<label>Upload your DMC</label>
<input type="file" required>
</div>
<div class="checkbox">
<span>Your hobbies</span>
<div class="checkbox-inner">
<div class="content">
<div class="check">
<input type="checkbox">
<label>Rapping</label>
</div>
<div class="check">
<input type="checkbox">
<label>Cricket Playing</label>
</div>
<div class="check">
<input type="checkbox">
<label>Bike riding</label>
</div>
<div class="check">
<input type="checkbox">
<label>Other</label>
</div>
</div>
</div>
</div>
<div class="textarea">
<textarea placeholder="Your Comments"></textarea>
</div>
<div class="button">
<input type="submit" id="submit">
<input type="reset" id="reset">
</div>
</form>
</div>
</div>
</div>
</body>
<script src="script.js"></script>
</html>
<!-- coded by Rankush :) -->