-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
75 lines (60 loc) · 3.05 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
<! doctype html>
<html>
<head>
<title>FCC Survey Form</title>
<link rel="stylesheet" href="indext.css" type="text/css" />
</head>
<body>
<div>
<h1>freeCodeCamp Survey Form</h1>
<p class="intro"><i>Thank you for taking the time to help us improve the platform</i></p>
<div class="wrapper">
<div class="address">
<b>Name</b><br/>
<input class="inputboxs" type="text" placeholder="Erter your name" /><br/><br/>
<b>Email</b><br/>
<input class="inputboxs" type="text" placeholder="Enter your Email" /><br/><br/>
<b>Age (Optional)</b><br/>
<input class="inputboxs" type="number" min="10" max="99" placeholder="Age" /><br/><br/>
<b>Which option best describes your current role?</b><br/>
<select class="inputboxs">
<option>Select current role</option>
<option>Student</option>
<option>Full time job</option>
<option>Full time learner</option>
<option>Prefer not to say</option>
<option>Other</option>
</select><br/><br/>
<b>Would you recommend freeCodeCamp to a friend?</b><br/>
<input class="checkboxs" name="user-recommend" type="radio"/><b class="radio" checked=""> Definitely</b><br/>
<input class="checkboxs" name="user-recommend" id="radio" type="radio" checked=""/><b class="radio">Maybe</b><br/>
<input class="checkboxs" name="user-recommend" id="radio" type="radio" checked="" /><b class="radio" >Not sure</b>
<br/><br/>
<b>What is your favorite feature of freeCodeCamp?</b>
<select class="inputboxs">
<option>Select an option</option>
<option>Challengs</option>
<option>Projects</option>
<option>Comunity</option>
<option>Open Source</option>
</select>
<p>What would you like to see improved? <span class="clue">(Check all that apply)</span></p>
<lavel><input class="checkboxs" type="checkbox">Front-end Projects</lavel><br/>
<lavel><input class="checkboxs" type="checkbox">Back-end Projects</lavel><br/>
<lavel><input class="checkboxs" type="checkbox">Data Visualization</lavel><br/>
<lavel><input class="checkboxs" type="checkbox">Challenges</lavel><br/>
<lavel><input class="checkboxs" type="checkbox">Open Source Community</lavel><br/>
<lavel><input class="checkboxs" type="checkbox"/>Gitter help rooms</lavel><br/>
<lavel><input class="checkboxs" type="checkbox"/>Videos</lavel><br/>
<lavel><input class="checkboxs" type="checkbox"/>City Meetups</lavel><br/>
<lavel><input class="checkboxs" type="checkbox"/>Wiki</lavel><br/>
<lavel><input class="checkboxs" type="checkbox"/>Forum</lavel><br/>
<lavel><input class="checkboxs" type="checkbox"/>Additional Courses</lavel>
<p>Any comments or suggestions</p>
<lavel><textarea id="inputtextareas" placeholder="Enter your comment here" type="textarea" /></textarea></lavel>
<button class="buttontag">Submit</button>
</div>
</div>
</div>
</body>
</html>