-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsurveryform_html.html
44 lines (44 loc) · 2.66 KB
/
surveryform_html.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<link rel="stylesheet" type="text/css" href="./surveryform.css" />
<title>Registration Form</title>
</head>
<body>
<h1 id="title"><b>Survey Form</b></h1>
<p id="description">Please fill out this form</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" min="10" max="120"/></label>
<label>Which option best describes your current role? <select id="dropdown">
<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></label>
<p>Would you recommend freeCodeCamp to a friend?</p>
<label><input class="inline" type="radio" name="recommend" value="definately">Definately</label>
<label><input class="inline" type="radio" name="recommend" value="maybe">Maybe</label>
<label><input class="inline" type="radio" name="recommend" value="notsure">Not sure</label>
<p>What would you like to see improved? (Check all that apply)</p>
<label><input class="inline" type="checkbox"value="checkbox1">Front-end Projects</label>
<label><input class="inline" type="checkbox" value="checkbox2" >Back-end Projects</label>
<label><input class="inline" type="checkbox" value="checkbox3">Data Visualization</label>
<label><input class="inline" type="checkbox" value="checkbox4">Challenges</label>
<label><input class="inline" type="checkbox" value="checkbox5">Open Source Community</label>
<label><input class="inline" type="checkbox" value="checkbox6">Gitter help rooms</label>
<label><input class="inline" type="checkbox" value="checkbox7">Videos</label>
<label><input class="inline" type="checkbox" value="checkbox8">City Meetups</label>
<label><input class="inline" type="checkbox" value="checkbox9">Wiki</label>
<label><input class="inline" type="checkbox" value="checkbox10">Forums</label>
<label><input class="inline" type="checkbox" value="checkbox11">Additional Courses</label>
<br>
<label>Any comments or suggestions?<textarea></textarea></label>
<input type="submit" id="submit" value="Submit">
</form>
</body>
</html>