-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSurvey.html
189 lines (165 loc) · 4.23 KB
/
Survey.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
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
<html lang="en">
<style>
body{
font-size: 10px;
background-image: url(https://cdn.freecodecamp.org/testable-projects-fcc/images/survey-form-background.jpeg);
background-color: transparent;
background-repeat: no-repeat;
background-size: cover;
background-position: center;
height: 100%;
padding: 10px;
}
</style>
<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">
<title>Survey Form</title>
<style>
body{
font-family: sans-serif;
text-align: center;
color: rgba(254, 252, 255, 0.923);
line-height: 1.5;
margin: 0;
font-size: 10px;
}
</style>
</head>
<body>
<h1 id="title">
<style>
body{
font-size: 1rem;
margin-bottom: 0;
}
</style>
freeCodeCamp Survey Form
</h1>
<p id="description"> Thank you for taking time to help us improve the platform</p>
<form id="survey-form">
<label for="Name"> Name <span></span></label><br>
<input id="name"
type="text"
name="Name"
placeholder="Enter your Name"
required><br>
<label for="email" >Email</label><br>
<input id="Email"
type="text"
placeholder="Enter your Email"></input><br>
<label for="Age">Age(optional)</label><br>
<input id="Age"
type="number" min="10" max="99"
class="form-control"
placeholder="Age"><br>
<div class="form-group">
<p>
What is yourfavorite feature of freeCodecamp?
</p>
<select id="dropdown"
name="favorite-feature"
class="form-control" required>
<option disabled selected value>Select an option </option></option>
<option value="feature">Challenges</option>
<option value="feature">Projects</option>
<option value="feature">Community</option>
<option value="feature">Open Source</option>
</select>
</div>
<div class="form-group">
<p>Would you recommend freeCodeCamp to a friend?
</p>
<label>
<input
name="user-recommendation"
value="definitely"
type="radio"
class="input-radio" checked >Definitely
</label>
<label>
<input
name="user-recommendation"
value="maybe"
type="radio"
class="input-radio" > Maybe
</label>
<label>
<input
name="user-recommendation"
value="not-sure"
type="radio"
class="input-radio" >Not Sure
</label>
</div>
<div class="form-group">
<p>
What is your favorite feature of freeCodeCamp?
</p>
<select id="dropdown"
name="favorite feature"
class="form-control" required>
<option disabled selected value>Select an option</option>
<option value="Challenges">Challenges</option>
<option value="Projects">Projects</option>
<option value="Community">Community</option>
<option value="Open Source">Open Source</option>
</select>
</div>
<div>
<p>What would you like to see improved?
</p>
<label>
<input
name="front-end Projects"
value="Front-end Projects"
type="checkbox"
class="input-checkbox">Front-end Projects
</label><br>
<label>
<input
name="back-end Projects"
value="back-end Projects"
type="checkbox"
class="input-checkbox">back-end Projects
</label><br>
<label>
<input
name="Data Visualization"
value="Data Visualization"
type="checkbox"
class="input-checkbox">Data Visualization
</label><br>
<label>
<input
name="Challenges"
value="Challenges"
type="checkbox"
class="input-checkbox">Challenges
</label><br>
<label>
<input
name="Videos"
value="Videos"
type="checkbox"
class="input-checkbox">Videos
</label><br>
<label>
<input
name="Wiki"
value="Wiki"
type="checkbox"
class="input-checkbox">Wiki
</label>
</div>
<div>
<p>Any comments or suggestions?</p>
<label for="Coverletter">Cover Letter:</label><br>
<textarea rows = "5" cols = "60" name = "description">
</textarea><br>
<input type="submit" value="submit">
</div>
</form>
</body>
</html>