-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
158 lines (156 loc) · 4.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
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
<!DOCTYPE html>
<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="styles.css" />
<title>Survey</title>
</head>
<body>
<h1 id="title">feeCodeCamp Survey Form</h1>
<p id="description">
Thank you for taking the time to help us improve the platform
</p>
<form
method="post"
action="https://www.freecodecamp.org/"
id="survey-form"
>
<label for="name" id="name-label">
Name
<input
id="name"
type="text"
required
placeholder="Enter your name"
/>
</label>
<label for="email" id="email-label"
>Email
<input
type="email"
id="email"
required
placeholder="Enter your email"
/></label>
<label for="number" id="number-label"
>Age
<input
type="number"
id="number"
min="13"
max="120"
placeholder="Age"
/>
</label>
<label for="dropdown" class="paddTop"
>Which option best describes your current role?<select
name=""
id="dropdown"
>
<option value="">Select current role</option>
<option value="1">Student</option>
<option value="2">Full time</option>
<option value="3">Other</option>
</select></label
>
<label for="recommend" class="paddTop"
>Would you recommend freeCodeCamp to a friend?</label
>
<input
type="radio"
name="recommend"
id=""
class="inline"
value="definitely"
/>
Definitely
<input
type="radio"
name="recommend"
id=""
class="inline"
value="maybe"
/>
Maybe
<input
type="radio"
name="recommend"
id=""
class="inline"
value="notsure"
/>
Not sure
<label for="improved" class="paddTop"
>What would you like to see improved? (Check all that
apply)</label
>
<label class="improved"
><input
type="checkbox"
name="improved"
id="improved"
class="inline"
value="frontendprojects"
/>Front-end Projects</label
>
<label class="improved"
><input
type="checkbox"
name="improved"
id="improved"
class="inline"
value="backendprojects"
/>Back-end Projects</label
>
<label class="improved"
><input
type="checkbox"
name="improved"
id="improved"
class="inline"
value="datavisualization"
/>Data Visualization</label
>
<label class="improved"
><input
type="checkbox"
name="improved"
id="improved"
class="inline"
value="challenges"
/>Challenges</label
>
<label class="improved"
><input
type="checkbox"
name="improved"
id="improved"
class="inline"
value="opensourcecommunity"
/>Open Source Community</label
>
<label class="improved"
><input
type="checkbox"
name="improved"
id="improved"
class="inline"
value="gitterhelprooms"
/>Gitter help rooms</label
>
<label for="comment" class="paddTop">
Any comments or suggestions?
</label>
<textarea
name="comment"
id=""
cols="30"
rows="10"
placeholder="Enter your comment here..."
></textarea>
<input type="submit" value="Submit" id="submit" />
</form>
</body>
</html>