-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsurvey-form-project.html
56 lines (55 loc) · 2.46 KB
/
survey-form-project.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" type="text/css" href="survey-form-project.css" />
<title>Survey Form</title>
</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>
<form id="survey-form">
<label id="name-label">Name <input type="text" id="name" placeholder="Enter your name" required /></label>
<label id="email-label">Email <input type="email" id="email" placeholder="Enter your Email" required /></label>
<label id="number-label">Age (optional) <input type="number" id="number" placeholder="Age" pattern="[0-9]" min="13" max="120" /></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>
</select>
</label>
Would you recommend freeCodeCamp to a friend?
<label class="check">Definitely
<input type="radio" name="radio" value="definitely" class="inline" checked/>
</label>
<label class="check">Not sure
<input type="radio" name="radio" value="notsure" class="inline"/>
</label>
What would you like to see improved? (Check all that apply)
<label class="check">
<input type="checkbox" value="a" class="inline"/> Front-End Projects
</label>
<label class="check">
<input type="checkbox" value="b" class="inline"/> Back-end Projects
</label>
<label class="check">
<input type="checkbox" value="c" class="inline"/> Data Visualization
</label>
<label class="check">
<input type="checkbox" value="d" class="inline"/> Other Stuffs
</label>
<label class="check">
<input type="checkbox" value="e" class="inline"/> Open Source Community
</label>
<label class="check">
<input type="checkbox" value="f" class="inline"/> Gitter help rooms
</label>
<label>Any comments or suggestions?
<textarea placeholder="Enter your comment here..."></textarea>
</label>
<input type="submit" value="Submit" id="submit"/>
</form>
</body>
</html>