-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
114 lines (90 loc) · 5.24 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>freeCodeCamp Survey From</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div class="container">
<header class="header text-center" >
<h1 id="title">freeCodeCamp Survey Form</h1>
<p id="description" class="description">Thank you for taking the time to help us improve the platform</p>
</header>
<form id="survey-form">
<div class="form-group">
<label for="name" id="name-label">Name</label>
<input type="text" id="name" name="name" required placeholder="Enter your name" class="form-control">
</div>
<div class="form-group">
<label for="email" id="email-label">Email</label>
<input type="email" id="email" name="email" required placeholder="Enter your Email" class="form-control">
</div>
<div class="form-group">
<label for="number" id="number-label">Age <span class="clue">(optional)</span></label>
<input type="number" id="number" min="1" max="100" placeholder="Age" class="form-control">
</div>
<div class="form-group">
<label for="dropdown">Which option best describes your current role?</label>
<select id="dropdown" class="form-control">
<option disabled selected value>Select current role</option>
<option>Student</option>
<option>Full time job</option>
<option>Full time learner</option>
<option>Prefer not to say</option>
<option>Other</option>
</select>
</div>
<div class="form-group">
<p>Would you recommend freeCodeCamp to a friend?</p>
<label for="definitely"><input type="radio" id="definitely" name="user-recommend" value="definitely" checked class="input-radio">Definitely</label>
<label for="maybe"><input type="radio" id="maybe" name="user-recommend" value="maybe" class="input-radio">Maybe</label>
<label for="not-sure"><input type="radio" id="not-sure" name="user-recommend" value="not-sure" class="input-radio">Not sure</label>
</div>
<div class="form-group">
<label for="favourite-feature">What is your favorite feature of freeCodeCamp?</label>
<select id="favourite-feature" class="form-control">
<option disabled selected value>Select an option</option>
<option>Challenges</option>
<option>Projects</option>
<option>Community</option>
<option>Open source</option>
</select>
</div>
<div class="form-group">
<p>What would you like to see improved? <span class="clue">(Check all that apply)</span></p>
<label for="front-end-projects"><input type="checkbox" id="front-end-projects" name="front-end-projects" value="front-end-projects" class="input-checkbox">
Front-end Projects</label>
<label for="back-end-projects"><input type="checkbox" id="back-end-projects" name="back-end-projects" value="back-end-projects" class="input-checkbox">
Back-end Projects</label>
<label for="data-visualization"><input type="checkbox" id="data-visualization" name="data-visualization" value="data-visualization" class="input-checkbox">
Data Visualization</label>
<label for="challenges"><input type="checkbox" id="challenges" name="challenges" value="challenges" class="input-checkbox">
Challenges</label>
<label for="open-source-community"><input type="checkbox" id="open-source-community" name="open-source-community" value="open-source-community" class="input-checkbox">
Open Source Community</label>
<label for="gitter-help-rooms"><input type="checkbox" id="gitter-help-rooms" name="gitter-help-rooms" value="gitter-help-rooms" class="input-checkbox">
Gitter help rooms</label>
<label for="videos"><input type="checkbox" id="videos" name="videos" value="videos" class="input-checkbox">
Videos</label>
<label for="city-meetups"><input type="checkbox" id="city-meetups" name="city-meetups" value="city-meetups" class="input-checkbox">
City Meetups</label>
<label for="wiki"><input type="checkbox" id="wiki" name="wiki" value="wiki" class="input-checkbox">
Wiki</label>
<label for="forum"><input type="checkbox" id="forum" name="forum" value="forum" class="input-checkbox">
Forum</label>
<label for="additional-courses"><input type="checkbox" id="additional-courses" name="additional-courses" value="additional-courses" class="input-checkbox">
Additional Courses</label>
</div>
<div class="form-group">
<label for="text-area">Any comments or suggestions?</label>
<textarea id="text-area" placeholder="Enter your comment here..." class="input-textarea"></textarea>
</div>
<div class="form-group">
<input type="submit" id="submit" value="Submit" class="submit-button">
</div>
</form>
</div>
</body>
</html>