-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
164 lines (124 loc) · 5.43 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
<!DOCTYPE html>
<html lang="pt-br">
<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>freeCodeCamp Survey Form</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<h1 id="title">freeCodeCamp Survey Form</h1>
<p id="description">Thank you for taking the time to help us improve the platform</p>
<main>
<form id="survey-form" action="#">
<fieldset class="personal-date">
<!----------------------------------------------------------------------------------->
<label for="name-label">
Name
<input type="text" id="name-label" name="name" placeholder="Enter your name" require>
</label>
<!----------------------------------------------------------------------------------->
<label for="email-label">
E-mail
<input type="email" id="email-label" name="email" placeholder="Enter your e-mail" require>
</label>
<!----------------------------------------------------------------------------------->
<label for="number-label">
Age
<input type="number" id="number-label" name="age" min="10" max="120" placeholder="Age">
</label>
<!----------------------------------------------------------------------------------->
</fieldset>
<fieldset class="personal-information-job">
<p>Which option best describes your current role?</p>
<select name="role" id="dropdown" required>
<option disabled selected value>Select current role</option>
<option value="student">Student</option>
<option value="job">Full time job</option>
<option value="learner">Full time learner</option>
<option value="other">Other</option>
</select>
</fieldset>
<fieldset class="recomendation">
<p>Would you recommend freeCodeCamp to a friend?</p>
<label for="">
<input type="radio" name="user-recommend" value="definitely">
Definitely
</label>
<label for="">
<input type="radio" name="user-recommend" value="maybe">
Maybe
</label>
<label for="">
<input type="radio" name="user-recommend" value="not-sure">
Not sure
</label>
</fieldset>
<fieldset class="favorite">
<p>What is your favorite feature of freeCodeCamp?</p>
<select name="role" id="dropdown" 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>
</fieldset>
<fieldset class="improved">
<p>What would you like to see improved? (Check all that apply)</p>
<label>
<input type="checkbox" value="front-end-projects">
Front-end Projects
</label>
<label>
<input type="checkbox" value="back-end-projects">
Back-end Projects
</label>
<label>
<input type="checkbox" value="data-visualization">
Data Visualization
</label>
<label>
<input type="checkbox" value="challenges">
Challenges
</label>
<label>
<input type="checkbox" value="open-source-community">
Open Source Community
</label>
<label>
<input type="checkbox" value="gitter-help-rooms">
Gitter help rooms
</label>
<label>
<input type="checkbox" value="videos">
Videos
</label>
<label>
<input type="checkbox" value="city-meetups">
City Meetups
</label>
<label>
<input type="checkbox" value="wiki">
Wiki
</label>
<label>
<input type="checkbox" value="forum">
Forum
</label>
<label>
<input type="checkbox" value="additional-courses">
Additional Courses
</label>
</fieldset>
<fieldset class="suggestions">
<p>Any comments or suggestions?</p>
<textarea name="comment" id="comment" cols="40" rows="10"
placeholder="Enter your comment here..."></textarea>
</fieldset>
<button type="submit" id="submit" class="submit-button"></button>
</form>
</main>
</body>
</html>