-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
172 lines (164 loc) · 5.42 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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="style.css">
<meta charset="utf-8">
<meta name="viewport"
content="width=device-width,
initial-scale=1.0">
<title>Survey Form</title>
</head>
<body>
<div class="container">
<header class="header">
<h1 id="title" class="description
text-center">
Survey Form</h1>
<p id="description" class="description
text-center">
Thank you for taking the time to fill
the form!!
</p>
</header>
<form id="survey-form">
<div class="form-group">
<label id="name-label" for="name">
Full Name
</label>
<input type="text" name="name" id="name"
class="form-control"
placeholder="Enter your name"
required/>
</div>
<div class="form-group">
<label id="email-label"
for="email">Email
</label>
<input type="email" name="email"
id="email" class="form-control"
placeholder="Enter Your email"
required/>
</div>
<div class="form-group">
<label id="number-label"
for="number">Contact Number
</label>
<input type="number" name="number"
placeholder="Enter your number"
class="form-control"
required/>
</div>
<div class="form-group">
<p>Which option best describes your current role?</p>
<select id="dropdown" name="role"
class="form-control" required>
<option disabled selected values>
Select current role
</option>
<option value="student">Student</option>
<option value="job">Full Time Job</option>
<option value="ptj">Part Time Job</option>
<option value="other">Other</option>
</select>
</div>
<div class="form-group">
<p>Gender</p>
<label id="gender" for="gender">Male
</label>
<input name="gender" value="Male"
type="radio" class="input-radio"
/>
<label id="gender"
for="gender">Female
</label>
<input name="gender" value="Male"
type="radio" class="input-radio"
checked/>
</div>
<div class="form-group">
<p>What would you like to become?
(Check all that apply)</p>
<label>
<input name="prefer"
value="Front-end-dev"
type="checkbox"
class="input-checkbox"/>
Front-end-dev
</label>
<label>
<input name="prefer"
value="Back-end-dev"
type="checkbox"
class="input-checkbox"/>
Back-end-dev
</label>
<label>
<input name="prefer"
value="fullstack"
type="checkbox"
class="input-checkbox"/>
Full Stack Developer
</label>
<label>
<input name="prefer"
value="data-science"
type="checkbox"
class="input-checkbox"/>
Data Scientist
</label>
<label>
<input name="prefer"
value="Dev-Ops"
type="checkbox"
class="input-checkbox"/>
Dev-Ops
</label>
<label>
<input name="prefer"
value="Blockchain"
type="checkbox"
class="input-checkbox"/>
Blockchain Developer
</label>
<label>
<input name="prefer"
value="other"
type="checkbox"
class="input-checkbox"/>
Other
</label>
</div>
<div class="form-group">
<p>What would you like to Participate</p>
<select id="most-like" name="mostlike"
class="form-control" required>
<option disabled select value>
Select an option</option>
<option value="Open Source">
Open Source</option>
<option value="Felloship">
Felloship</option>
<option value="community">
Community</option>
<option value="hackathons">
Hackathons</option>
</select>
</div>
<div class="form-group">
<p>What would like to tell us?</p>
<textarea
id="comments"
class="input-textarea"
name="comments"
placeholder="Shoot!!">
</textarea>
</div>
<div class="form-group">
<button type="submit" id="submit"
class="submit-button">Submit
</button>
</div>
</form>
</div>
</body>
</html>