-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
102 lines (87 loc) · 4.84 KB
/
index.html
File metadata and controls
102 lines (87 loc) · 4.84 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="FCC-2 style.css">
<title>Survey Form</title>
</head>
<body>
<div class="container">
<h1 id="title">freeCodeCamp Survey Form</h1>
<p id="description">Thank you for taking the time to help us improve the platform</p>
<div id="box">
<form action="blank" id="survey-form">
<div class="form-grp">
<label for="name" id="name-label">Name</label>
<input type="text" id="name" placeholder="Enter Your Name" required/>
</div>
<div class="form-grp">
<label for="email" id="email-label">Email</label>
<input type="email" name="email" id="email" placeholder="Enter Your Email Address" required/>
</div>
<div class="form-grp">
<label for="age" id="number-label">Age (optional)</label>
<input type="number" name="number" id="number" min="10" max="99" placeholder="Age"/>
</div>
<div class="form-grp">
<p>Which option best describes your current role?</p>
<select name="role" id="dropdown" required>
<option value="student" id="drop">Student</option>
<option value="job" id="drop">Full Time Job</option>
<option value="learner" id="drop">Full Time Learner</option>
<option value="preferno" id="drop">Prefered Not to Say</option>
<option value="Other" id="drop">Other</option>
</select>
</div>
<div class="form-grp">
<p>Would you recommend freeCodeCamp to a friend?</p>
<label for="button" class="rbutton">
<input type="radio" name="userchoice" id="userchoice" value="definitely"/>Definitely
</label>
<label for="button" class="rbutton">
<input type="radio" name="userchoice" id="userchoice" value="maybe"/>Maybe
</label>
<label for="button" class="rbutton">
<input type="radio" name="userchoice" id="userchoice" value="notsure"/>Not Sure
</label>
</div>
<div class="form-grp">
<p>What would you like to see improved? (Check all that apply)</p>
<label for="checkbox">
<input type="checkbox" name="checkbox" id="checkbox" value="frontend"/>Front-end Projects</label>
<label for="checkbox">
<input type="checkbox" name="checkbox" id="checkbox" value="backend"/>Back-end Projects</label>
<label for="checkbox">
<input type="checkbox" name="checkbox" id="checkbox" value="data"/>Data Visualization</label>
<label for="checkbox">
<input type="checkbox" name="checkbox" id="checkbox" value="challange"/>Challenges</label>
<label for="checkbox">
<input type="checkbox" name="checkbox" id="checkbox" value="opensrc"/>Open Source Community</label>
<label for="checkbox">
<input type="checkbox" name="checkbox" id="checkbox" value="glitter"/>Gitter help rooms</label>
<label for="checkbox">
<input type="checkbox" name="checkbox" id="checkbox" value="video"/>Videos</label>
<label for="checkbox">
<input type="checkbox" name="checkbox" id="checkbox" value="city"/>City Meetups</label>
<label for="checkbox">
<input type="checkbox" name="checkbox" id="checkbox" value="wiki"/>Wiki</label>
<label for="checkbox">
<input type="checkbox" name="checkbox" id="checkbox" value="fourm"/>Fourm</label>
<label for="checkbox">
<input type="checkbox" name="checkbox" id="checkbox" value="addcrse"/>Additional Courses</label>
</label>
</div>
<div class="form-grp">
<p>Any comments or suggestions?</p>
<textarea name="textarea" id="textarea" cols="30" rows="6" placeholder="Enter text here..."></textarea>
</div>
<div class="form-grp">
<button type="submit" id="submit">Submit</button>
</div>
</form>
</div>
</div>
</body>
</html>