-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
123 lines (122 loc) · 6.49 KB
/
index.html
File metadata and controls
123 lines (122 loc) · 6.49 KB
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
115
116
117
118
119
120
121
122
123
<!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>ISEwrld Survey Form</title>
<link rel="stylesheet" href="style.css" type="text/css" media="screen">
</head>
<body>
<main id="main">
<h1 id="title">
ISEwrld Survey Form</h1>
<p id="description">
Dear sneakfreaks, Thank you for taking the time to help us improve the platform. "ISEwrld"; for our feat...</p>
<form id="survey-form">
<div class="form-control"><label for="name" id="name-label"> Name</label>
<input type="text" placeholder="e.g. Engr.Sage" id="name" required>
</div>
<div class="form-control"><label for="email" id="email-label"> Email</label>
<input type="email" placeholder="e.g. sage@gmail.com" id="email" required/>
</div>
<div class="form-control"><label for="number" id="number-label"> Tel Number:</label>
<input type="number" placeholder="Enter Tel No" id="number" required/>
</div>
<div class="form-control"><label for="age" id="age-label"> Age:</label>
<input type="number" placeholder="Age" id="age" min="18" max="80"/>
</div>
<div class="Sex:">
<p>Sex</p>
<label for="male">
<input type="radio" id="male" value="male" name="sex" required>Male
</label>
<label for="female">
<input type="radio" id="female" value="female" name="sex" required>Female
</label>
<label for="others">
<input type="radio" id="others" value="others" name="sex" required>Others
</label>
</div>
<p>What Option Describe Your Current Role</p>
<div class="form-control"><select name="dropdown-role" id="dropdown">
<option disabled="" selected="" value=""> Select an option</option>
<option value="student"> Student</option>
<option value="part-time-student">Part-time Student</option>
<option value="full-time-job">Full-time Job</option>
<option value="contract-job">Contract Job</option>
<option value="prefer-not-say">Prefer not say</option>
<option value="others">Others</option>
</select>
</div>
<p>Would you recommend ISEwrld's merch to your friends?</p>
<div class="form-control inline">
<label for="radio1">
<input type="radio" id="radio1" value="definetely" name="recommend">Definetely</label>
</div>
<div class="form-control inline">
<label for="radio2">
<input type="radio" id="radio2" value="Maybe" name="recommend">Maybe</label>
</div>
<div class="form-control inline">
<label for="radio3">
<input type="radio" id="radio3" value="Not Sure" name="recommend">Not Sure</label>
</div>
<p>What is your favourite merch of ISEwrld?</p>
<div class="form-control"><select name="merch" id="dropdown1">
<option disabled="" selected="" value="">Select an option</option>
<option value="foot-wears">Foot Wears</option>
<option value="mugs">Mugs</option>
<option value="t-shirts">T-shirts</option>
<option value="embroided-sweatshirts">Embroided Sweatshirts</option>
<option value="home-decor">Home decor</option>
<option value="jeans">Jeans (Denim)</option>
<option value="leisure-wear">Leisure Wear</option>
<option value="w-watch">Wrist Watches</option>
<option value="others">Others</option>
</select>
</div>
<p>What would you like to see improved? (check all that apply)</p>
<div class="form-control inline">
<label for="checkbox">
<input type="checkbox" id="checkbox" value="foot wears">Foot Wears</label>
</div>
<div class="form-control inline">
<label for="checkbox1">
<input type="checkbox" id="checkbox1" value="Apparel">Apparel</label>
</div>
<div class="form-control inline">
<label for="checkbox2">
<input type="checkbox" id="checkbox2" value="equipment">Equipment</label>
</div>
<div class="form-control inline">
<label for="checkbox3">
<input type="checkbox" id="checkbox3" value="accessories">Accessories</label>
</div>
<div class="form-control inline">
<label for="checkbox4">
<input type="checkbox" id="checkbox4" value="designs">Designs</label>
</div>
<div class="form-control inline">
<label for="checkbox5">
<input type="checkbox" id="checkbox5" value="sales">Sales associate</label>
</div>
<div class="form-control inline">
<label for="checkbox6">
<input type="checkbox" id="checkbox6" value="data">Data</label>
</div>
<div class="form-control inline">
<label for="checkbox7">
<input type="checkbox" id="checkbox7" value="flexible schedule">Flexible Scheudle</label>
</div>
<p>Any comments or suggestions?</p>
<div class="form-control">
<textarea placeholder="Enter your comments here..."></textarea>
</div>
<button class="submit-button" id="submit">Submit</button>
</form>
<footer><strong>©ISEwrld inc. 2022</strong></footer>
<!-- <script src="https://cdn.freecodecamp.org/testable-projects-fcc/v1/bundle.js"></script> -->
</main>
</body>
</html>