-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsurvey.html
55 lines (48 loc) · 2.77 KB
/
survey.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="A simple Survey Form built for my certification project in FCC, using HTML and CSS.">
<title>FCC Survey Form</title>
<link rel="stylesheet" href="survey.css">
</head>
<body>
<h1 id="title">FCC Survey Form</h1>
<p id="description">Thank you for taking the time to help us improve the platform</p>
<form id="survey-form">
<fieldset>
<label for="name" id="name-label">Name</label>
<input class="box" id="name" type="text" name="name" placeholder="Enter your name" required>
<label for="email" id="email-label">Email</label>
<input class="box" id="email" type="email" name="email" placeholder="Enter your Email" required>
<label for="number" id="number-label">Age(optional)</label>
<input class="box" id="number" type="number" name="age" placeholder="Age" min="13" max="120" >
<label for="dropdown" id="dropdown-label">Which option best describes your current role?</label>
<select class="box" 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 for="radio" id="radio-label">Would you recommend our service to a friend?</label>
<div>
<label for="definitely"><input type="radio" id="definitely" name="definitely-maybe-notsure" value="1" checked> Definitely</label>
<label for="maybe"><input type="radio" id="maybe" name="definitely-maybe-notsure" value="2"> Maybe</label>
<label for="notsure"><input type="radio" id="notsure" name="definitely-maybe-notsure" value="3"> Not sure</label>
</div>
<label for="checkbox" id="checkbox-label">What would you like to see more? (Check all that apply)</label>
<div>
<label for="frontend"><input type="checkbox" id="frontend" name="frontend" value="1" > Front-end Projects</label>
<label for="backend"><input type="checkbox" id="backend" name="backend" value="2" > Back-end Projects</label>
<label for="courses"><input type="checkbox" id="courses" name="courses" value="3" > Additional Courses</label>
</div>
<label for="comment" id="comment-label">Any comments or suggestions?</label>
<textarea class="box large" id="comment" name="comment" rows="3" cols="30" placeholder="Enter your text here..." ></textarea>
<button class="box" type="submit" id="submit" name="submit">Submit</button>
</fieldset>
</form>
</body>
</html>