-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
69 lines (69 loc) · 3.79 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
<!DOCTYPE html>
<html lang="en">
<header>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="styles.css" />
<title>freeCodeCamp Survey Form</title>
</header>
<body>
<h1 id="title">freeCodeCamp Survey Form</h1>
<p id="description" class="established">Thank you for taking the time to help us improve the platform</p>
<form id="survey-form" action='https://survey-form.freecodecamp.rocks/?name=Jan&email=jan.mlinaric%40gmail.com&age=22&role=student&user-recommend=definitely&mostLike=challenges&prefer=back-end-projects&comment=a'>
<fieldset>
<label id="name-label">Name<input id="name" type="text" placeholder="Enter your name" required /></label>
<label id="email-label">Email<input id="email" type="email" placeholder="Enter your Email" required /></label>
<label id="number-label">Age <small>(optional)</small> <input id="number" type="number" min="10" max="99" placeholder="Age" / ></label>
<label> Which option best describes your current role
<select id="dropdown">
<option value="">Select current role</option>
<option value="1">Student</option>
<option value="2">Full Time Job</option>
<option value="3">Full Time Learner</option>
<option value="4">Prefer not to say</option>
<option value="5">Other</option>
</select>
</label>
</fieldset>
<fieldset>
<label> Would you recommend freeCodeCamp to a friend?</label>
<label><input type="radio" class="inline" name="attribute" value="1" checked /> Definitely</label>
<label><input type="radio" class="inline" name="attribute" value="2" /> Maybe</label>
<label><input type="radio" class="inline" name="attribute" value="3" /> Not sure</label>
</fieldset>
<fieldset>
<label> What is your favorite feature of freeCodeCamp?
<select id="dropdown2">
<option value="">Select an option</option>
<option value="1">Challenges</option>
<option value="2">Projects</option>
<option value="3">Community</option>
<option value="4">Open Source</option>
</select>
</label>
</fieldset>
<fieldset>
<label>What would you like to see improved? <small>(Check all that apply)</small> </label>
<label><input type="checkbox" class="inline" value="front-end-projects" /> Front-end Projects</label>
<label><input type="checkbox" class="inline" value="back-end-projects" /> Back-end Projects</label>
<label><input type="checkbox" class="inline" value="data-visualization" /> Data visualization</label>
<label><input type="checkbox" class="inline" value="challenges" /> Challenges</label>
<label><input type="checkbox" class="inline" value="open-source-community" /> Open Source Community</label>
<label><input type="checkbox" class="inline" value="gitter-help-rooms" /> Gitter help rooms</label>
<label><input type="checkbox" class="inline" value="videos" /> Videos</label>
<label><input type="checkbox" class="inline" value="city-meetups" /> City Meetups</label>
<label><input type="checkbox" class="inline" value="wiki" /> Wiki</label>
<label><input type="checkbox" class="inline" value="forum" /> Forum</label>
<label><input type="checkbox" class="inline" value="additional-courses" /> Additional Courses</label>
</fieldset>
<fieldset>
<label> Any comments or suggestions?
<textarea rows="5" cols="50" placeholder="Enter your comment here..."></textarea>
</label>
</fieldset>
<fieldset>
<input type="submit" value="Submit" id="submit" />
</fieldset>
</form>
</body>
</html>