-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
94 lines (75 loc) · 3.51 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CLARUSWAY SURVEY FORM</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1>Clarusway Survey Form</h1>
<p id="first-p">Thank you for taking the time to help us improve the platform</p>
<form action="survey" method="get">
<div id="name">
<label for="name">Name</label><br>
<input type="text" id="name" placeholder="Enter your name" required>
</div>
<div id="surname">
<label for="surname">Surname</label><br>
<input type="text" id="surname" placeholder="Enter your Surname"required>
</div>
<div id="email">
<label for="email">Email</label><br>
<input type="email" id="email" placeholder="[email protected]"required>
</div>
<br>
<div class="option1">
<label for="roles"><span>Which option best describes your current role?</span></label><br>
<select id="roles" name="roles" >
<option value="beginner">Beginner</option>
<option value="mid-level">Mid-level</option>
<option value="senior">Senior</option>
</select>
</div>
<div class="radio">
<p>Would you recommend Clarusway to a friend?</p>
<input type="radio" id="val1" value="Definitely,Yes" checked>
<label for="val1">Definitely,Yes</label><br>
<input type="radio" id="val2" value="Maybe" >
<label for="val2">Maybe</label><br>
<input type="radio" id="val3" value="Not sure" >
<label for="val3">Not sure</label><br>
<input type="radio" id="val4" value="Definitely,No" >
<label for="val4">Definitely,No</label>
</div>
<br>
<div class="option2">
<label for="feature"><span>What is your favorite feature of Clarusway?</span></label><br><br>
<select id="feature" name="favorite_feature" >
<option value="courses">Courses</option>
<option value="projects">Projects</option>
<option value="community">Community</option>
<option value="mentors">Mentors</option>
</select>
</div>
<div class="check">
<p>What would you like to see improved?(Check all that apply)</p>
<input type="checkbox" id="frontend" name="frontend" value="Front-end Projects">
<label for="frontend">Front-end Projects</label><br>
<input type="checkbox" id="backend" name="backend" value="Back-end Projects">
<label for="backend">Back-end Projects</label><br>
<input type="checkbox" id="datascience" name="datascience" value="Data Science">
<label for="datascience">Data Science</label><br>
<input type="checkbox" id="other" name="other" value="Additional Courses">
<label for="other">Additional Courses</label>
</div>
<br>
<div class="comment">
<label for="comments"><span>Any comments or suggestions?</span></label><br>
<textarea id="comments" placeholder="Enter your comment here...Thanks for your comments"></textarea>
<input type="submit" value="Submit" id="submit">
</div>
</form>
</body>
</html>