-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsurvey.html
81 lines (66 loc) · 4.51 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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="survey.css">
</head>
<body>
<main id="main">
<h1 id="title"> freeCodeCamp Survey Form</h1>
<p id="description">Thank you for taking the time to help us improve the platform</p><br/>
<form id="survey-form">
<label for="name" id="name-label">Name </label> <br/>
<input type="text" id="name" name="name"/ required placeholder="Enter your name"> <br/>
<label for="email" id="email-label">Email </label><br/>
<input type="email" id="email" name="email"/ required placeholder="Enter your Email"> <br/>
<label for="age" id="number-label">Age(optional) </label> <br/>
<input type="number" id="number" name="age" min="12" max="100" required placeholder="Age"> <br/><br/>
<label for="current_role">Which option best describes your current role?</label><br/>
<select name="role" id="dropdown">
<option disabled selected value>Select current role</option>
<option value="student">Student</option>
<option value="woman">Woman</option>
<option value="job">Full Time Job</option>
<option value="learner">Full Time Learner</option>
<option value="nosay">Prefer not to say</option>
<option value="other">other</option>
</select> <br/><br/>
<fieldset>
<legend>Would you recommend freeCodeCamp to a friend?</legend>
<label for="recommend"></label> <br/>
<input type="radio" id="recommend" name="recommend" value="Definetly"/>Definetly <br/>
<input type="radio" id="recommend" name="recommend" value="Maybe"/>Maybe <br/>
<input type="radio" id="recommend" name="recommend" value="Not sure"/>Not sure <br/><br/>
</fieldset><br/>
<label for="favorite_feature">What is your favorite feature of freeCodeCamp?</label><br/>
<select name="favoritefeature" id="favorite_feature" required>
<option value="" selected="selected">Select an option</option>
<option value="challenges">Challenges</option>
<option value="projects">Projects</option>
<option value="community">Community</option>
<option value="opensource">Open Source</option>
</select> <br/><br/>
<fieldset>
<legend>What would you like to see improved? (Check all that apply)</legend>
<label for="improvement"></label><br/>
<input type="checkbox" id="Check-box" name="improve" value="front-end-projects"/>Front-end Projects<br/>
<input type="checkbox" id="Check-box" name="improve" value="back-end-projects"/>Back-end Projects<br/>
<input type="checkbox" id="Check-box" name="improve" value="data-visualization"/>Data Visualization<br/>
<input type="checkbox" id="Check-box" name="improve" value="challenges"/>Challenges<br/>
<input type="checkbox" id="Check-box" name="improve" value="open-source-community"/>Open Source Community<br/>
<input type="checkbox" id="Check-box" name="improve" value="gitter-help-rooms"/>Gitter help rooms<br/>
<input type="checkbox" id="Check-box" name="improve" value="videos"/>Videos<br/>
<input type="checkbox" id="Check-box" name="improve" value="city-meetups"/>City Meetups<br/>
<input type="checkbox" id="Check-box" name="improve" value="wiki"/>Wiki<br/>
<input type="checkbox" id="Check-box" name="improve" value="forum"/>Forum<br/>
<input type="checkbox" id="Check-box" name="improve" value="additional-courses"/>Additional Courses<br/>
</fieldset><br/>
<label for="email"></label>Any comments or suggestions?</label><br/>
<textarea id="text-area" name="comments" maxlength="500" placeholder="Enter your comment here..."></textarea>
</label><br/>
<button type="submit" id="submit">
Submit
</button>
</form>
</main>
</body>
</html>