-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
89 lines (73 loc) · 3.97 KB
/
Copy pathindex.html
File metadata and controls
89 lines (73 loc) · 3.97 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=
, initial-scale=1.0">
<title>survey-form</title>
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<h1 id="title" class="text-center"><b>freeCodeCamp Survey Form</b></h1>
<i> <p id="description" class="discription text-center">Thank you for taking the time to help us improve the platform</p></i>
<form id="survey-form">
<label id="name-label">Name</label>
<input type="text" name="name" id="name" placeholder="Type your name" required><br>
<label id="email-label">Email</label>
<input type="email" name="email" id="email" placeholder="your email" required><br>
<label id="number-label">Age</label>
<input type="number" name="number" id="number" min="0" max="9" placeholder="number" required><br>
<br>
<h2 class="head1">Which option best describes your current role?</h2>
<select name="" id="dropdown">
<option value="student">student</option>
<option value="full time job">full time job</option>
<option value="full time learner">full time learner</option>
<option value="prefer not to say">prefer not to say</option>
<option value="other">other/option>
</select>
<br>
<h2 class="head2">Would you recommend freeCodeCamp to a friend?</h2>
<br>
<div class="radio-buttons">
<input type="radio" id="definitely" name="obj" value="definitely">
<label for="definitely">Definitely</label><br>
<input type="radio" id="may be" name="obj" value="may be">
<label for="may be">May be</label><br>
<input type="radio" id="Not sure" name="obj" value="Not sure">
<label for="Not sure">Not sure</label>
</div>
<br>
<div class="dropdown" name="favorite">
<h2 id="head3">What is your favorite feature of freeCodeCamp?</h2>
<select name="" id="dropdown">
<option value="Challenges">Challenges</option>
<option value="Project">Project</option>
<option value="Community">Community</option>
<option value="Open source">Open source</option>
</select>
</div>
<br>
<h2 id="head 4">
What would you like to see improved? (Check all that apply)
</h2><br>
<div class="checkboxes">
<input type="checkbox" id="Front-end project" name="Front-end project" value="Front-end project"> Front-end project<br>
<input type="checkbox" id="Back-end project" name="Back-end project" value="Back-end project"> Back-end<br>
<input type="checkbox" id="Data visualization" name="Data visualization" value="Data visualization"> Data visualization<br>
<input type="checkbox" id="Challenges" name="Challenges" value="Challenges"> Challenges<br>
<input type="checkbox" id="Open source community" name="Open source community" value="Open source community"> Challenges<br>
<input type="checkbox" id="Gitter help rooms" name="Gitter help rooms" value="Gitter help rooms">Gitter help rooms<br>
<input type="checkbox" id="Videos" name="Videos" value="Videos"> Videos<br>
<input type="checkbox" id="City Meetups" name="City Meetups" value="City Meetups"> City Meetups <br>
<input type="checkbox" id="Wiki" name="Wiki" value="Wiki"> Wiki<br>
<input type="checkbox" id="Forum" name="Forum" value="Forum"> Forum<br>
<input type="checkbox" id="Additional courses" name="Additional courses" value="Additional courses"> Additional courses<br>
</div>
<textarea placeholder="morecomment"> </textarea>
<button class="submit" id="submit">Submit</button>
</form>
<script src="https://cdn.freecodecamp.org/testable-projects-fcc/v1/bundle.js"></script>
</body>
</html>