-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
84 lines (76 loc) · 3.49 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Survey Form</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="container">
<header>
<h1 id="title">Programming Survey Form</h1>
<p id="description">Thank you for taking the time to help us improve our platform</p>
</header>
<form id="survey-form">
<div class="form-group">
<label id="name-label" for="name">Name</label>
<input type="text" id="name" name="name" placeholder="Enter your name" required>
</div>
<div class="form-group">
<label id="email-label" for="email">Email</label>
<input type="email" id="email" name="email" placeholder="Enter your email" required>
</div>
<div class="form-group">
<label id="number-label" for="number">Age</label>
<input type="number" id="number" name="age" min="13" max="120" placeholder="Age" required>
</div>
<div class="form-group">
<label for="dropdown">Which option best describes your current role?</label>
<select id="dropdown" name="role" required>
<option disabled selected value="">Select current role</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-say">Prefer not to say</option>
<option value="other">Other</option>
</select>
</div>
<div class="form-group">
<p>Would you recommend our platform to a friend?</p>
<label>
<input type="radio" name="recommend" value="definitely" checked> Definitely
</label>
<label>
<input type="radio" name="recommend" value="maybe"> Maybe
</label>
<label>
<input type="radio" name="recommend" value="not-sure"> Not sure
</label>
</div>
<div class="form-group">
<p>What would you like to see improved? (Check all that apply)</p>
<label>
<input type="checkbox" name="prefer" value="front-end-projects"> Front-end Projects
</label>
<label>
<input type="checkbox" name="prefer" value="back-end-projects"> Back-end Projects
</label>
<label>
<input type="checkbox" name="prefer" value="data-visualization"> Data Visualization
</label>
<label>
<input type="checkbox" name="prefer" value="challenges"> Challenges
</label>
</div>
<div class="form-group">
<label for="comments">Any comments or suggestions?</label>
<textarea id="comments" name="comments" placeholder="Enter your comment here..."></textarea>
</div>
<div class="form-group">
<button type="submit" id="submit">Submit</button>
</div>
</form>
</div>
</body>
</html>