-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
114 lines (90 loc) · 5.01 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link href="https://fonts.googleapis.com/css?family=Open+Sans|PT+Sans" rel="stylesheet">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.3.1/css/all.css" integrity="sha384-mzrmE5qonljUremFsqc01SB46JvROS7bZs3IO2EmfFsd15uHvIt+Y8vEf7N7fWAU" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="default.css" />
<title>Free Code Camp Survey</title>
</head>
<body>
<header>
<h1><i class="fab fa-free-code-camp"></i>Free Code Camp Survey</h1>
<h2>Let us know how we can improve Free Code Camp</h2>
</header>
<div class="wrapper">
<form id="survey-form">
<div id="personal">
<h3>First, tell us something about you</h3>
<label for="name">Name</label>
<input type="text" id="name" placeholder="Your name" required/><br />
<label for="email">Email</label>
<input type="email" id="email" placeholder="[email protected]" required /><br /> <!-- validate input -->
<label for="number">Age </label>
<input type="number" id="number" min="10" max="99" placeholder="Age in numbers" required /><br /> <!-- validate number, use min max attributes -->
<div class="empty-space">
</div>
<p>
<h4>Which option describes your current role?</h4>
<select id="roles" required>
<option value="" disabled selected>Select an option</option>
<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>
<h4>What do you like most in FCC?</h4>
<select id="likes" required>
<option value="" disabled selected>Select an option</option>
<option value="challenges">Challenges</option>
<option value="projects">Projects</option>
<option value="community">Community</option>
<option value="open-source">Open Source</option>
<option value="all-above">All Above</option>
</select>
</p>
</div> <!-- eof personal -->
<div id="improve">
<p>
<h4>Which of the following things do you think could be improved?</h4>
</p>
<label class="indent"><input type="checkbox" name="front-end-projects" value="Front-end Projects"> Front-end Projects</label><br>
<label class="indent"><input type="checkbox" name="back-end-projects" value="Back-end Projects"> Back-end Projects</label><br>
<label class="indent"><input type="checkbox" name="data-visualization" value="Data Visualization"> Data Visualization</label><br>
<label class="indent"><input type="checkbox" name="challenges" value="Challenges"> Challenges</label><br>
<label class="indent"><input type="checkbox" name="open-source-community" value="Open Source Community"> Open Source Community</label><br>
<label class="indent"><input type="checkbox" name="gitter-help-rooms" value="Gitter help rooms"> Gitter help rooms</label><br>
<label class="indent"><input type="checkbox" name="videos" value="Videos"> Videos</label><br>
<label class="indent"><input type="checkbox" name="city-meetups" value="City Meetups"> City Meetups</label><br>
<label class="indent"><input type="checkbox" name="wiki" value="Wiki"> Wiki</label><br>
<label class="indent"><input type="checkbox" name="forum" value="Forum"> Forum</label><br>
<label class="indent"><input type="checkbox" name="additional-courses" value="Additional Courses"> Additional Courses</label><br>
</div> <!-- eof improve -->
<div id="recommend">
<p>
<h4>Would you recommend us to your friends?</h4>
</p>
<label class="indent" for="definately">Definately </label>
<input name="score" type="radio" id="definately" value="Definately" />
<label class="indent"el for="maybe" class="lspace">Maybe </label>
<input name="score" type="radio" id="maybe" value="Maybe" />
<label class="indent"el for="notsure" class="lspace">Not sure </label>
<input name="score" type="radio" id="notsure" value="Not sure" />
</div> <!-- eof recommend -->
<div id="suggestions">
<p>
<h4>Do you have any comments or suggestions?</h4>
</p>
<textarea id="message" placeholder="Enter your comments here..."></textarea>
</div> <!-- eof suggestions -->
<button type="submit" value="Send" >Send</button>
</form>
</div>
<footer>
Coded by Topzie - <a href="https://github.com/Topzie/FCC-survey">My repo at Github</a>
</footer>
</body>
</html>