-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
87 lines (80 loc) · 3.87 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8"/>
<title>Survey certification</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<h1 id="title" >freeCodeCamp Survey Form</h1>
<p id="description">Thank you for taking the time to help us improve the platform</p>
</header>
<form id="survey-form" method="post" action='https://survey-form.freecodecamp.rocks'>
<div id="form-group">
<label for="name" id="name-label">Name</label>
<input id="name" type="text" placeholder="Enter your name" required>
</div>
<div id="form-group">
<label for="email" id="email-label">Email</label>
<input id="email" type="email" placeholder="Enter your Email" required>
</div>
<div id="form-group">
<label for="number" id="number-label">Age (optional)</label>
<input id="number" type="number" placeholder="Age" min="18" max="100" required>
</div>
<div id="form-group">
<label for="dropdown" id="dropdown-label">Which option best describes your current role?</label>
<select id="dropdown" placeholder="Select current role">
<option disabled>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>
</div>
<div id="form-group">
<p>Would you recommend freeCodeCamp to a friend?</p>
<label><input class="inline" name="recommend" type="radio" value="1" checked/> Definitely</label>
<label><input class="inline" name="recommend" type="radio" value="2"/> Maybe</label>
<label><input class="inline" name="recommend" type="radio" value="3"/> Not sure</label>
</div>
<div id="form-group">
<label> What is your favorite feature of freeCodeCamp?
<select>
<option disabled>Select an option</option>
<option>Challenges</option>
<option>Projects</option>
<option>Community</option>
<option>Open Source</option>
</select>
</label>
</div>
<div id="form-group">
<p>What would you like to see improved? (Check all that apply)</p>
<label><input class="inline" name="improvement" type="checkbox" value="1"/> Front-end Projects</label>
<label><input class="inline" name="improvement" type="checkbox" value="2"/> Back-end Projects</label>
<label><input class="inline" maybe="improvement" type="checkbox" value="3"/> Data Visualization</label>
<label><input class="inline" name="improvement" type="checkbox" value="4"/> Challenges</label>
<label><input class="inline" name="improvement" type="checkbox" value="5"/> Open Source Community</label>
<label><input class="inline" maybe="improvement" type="checkbox" value="6"/> Gitter help rooms</label>
<label><input class="inline" name="improvement" type="checkbox" value="7"/> Videos</label>
<label><input class="inline" maybe="improvement" type="checkbox" value="8"/> City Meetups</label>
<label><input class="inline" name="improvement" type="checkbox" value="9"/> Wiki</label>
<label><input class="inline" maybe="improvement" type="checkbox" value="10"/> Forum</label>
<label><input class="inline" name="improvement" type="checkbox" value="11"/> Additional Courses</label>
</div>
<div id="form-group">
<label>Any comments or suggestions?
<textarea placeholder="Enter your comment here..."></textarea>
</label>
</div>
<div id="form-group">
<label>
<input id="submit" type="submit"></input>
</label>
</div>
</form>
</body>
</htmlY