-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
157 lines (111 loc) · 4.63 KB
/
index.html
File metadata and controls
157 lines (111 loc) · 4.63 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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
<!-- Initiation of the HTML Source Code -->
<!-- HTML Declaration -->
<!DOCTYPE html>
<html lang="en">
<!-- HTML head -->
<head>
<!-- Meta-tags -->
<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 of the page -->
<title>Food Delivery Feedback | Survey Page</title>
<!-- Designing Stylesheet -->
<link rel="stylesheet" href="css/design.css">
<!-- Stylesheet for Responsiveness -->
<link rel="stylesheet" href="css/responsive.css">
<!-- Fonts -->
<link href="https://fonts.googleapis.com/css2?family=Oswald&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Outfit:wght@200&display=swap" rel="stylesheet">
</head>
<!-- HTML Body -->
<body>
<!-- Home Section -->
<section id="home">
<!-- Short head -->
<div class="head">
<!-- Title head of the page -->
<h1 id="title">Food Delivery Survey Form</h1>
<!-- Description -->
<h3 id="description">Your feedback would help us to improve our services</h3>
</div>
<!-- Form -->
<div class="container">
<form action="backend.php" id="survey-form">
<div class="form-group" id="name">
<label id="name-label" for="name" required>Name:</label>
<input type="text" name="myName" placeholder="Enter your name">
</div>
<div class="form-group" id="email">
<label id="email-label" for="email" required>E-mail:</label>
<input type="email" name="myEmail" placeholder="Enter your email">
</div>
<div class="form-group" id="number">
<label id="number-label" for="number">Age(optional):</label>
<input type="number" min="10" max="99" name="myNumber" placeholder="Age">
</div>
<div class="form-group">
<p>
How often you order food online?
</p>
<label>
<input type="checkbox" name="myOrder"> Daily
</label>
<label>
<input type="checkbox" name="myOrder"> Weekly
</label>
<label>
<input type="checkbox" name="myOrder"> Monthly
</label>
</div>
<div class="form-group">
<p>
Which meal you typically order food online?
</p>
<label>
<input type="radio" name="myMeal"> Breakfast
</label>
<label>
<input type="radio" name="myMeal"> Lunch
</label>
<label>
<input type="radio" name="myMeal"> Snacks
</label>
<label>
<input type="radio" name="myMeal"> Dinner
</label>
</div>
<div class="form-group">
<p class="general">
In general, how do you prefer to order food?
</p>
<select name="myPreference" id="dropdown">
<option disabled selected value>Select an option</option>
<option value="Mobile App">Mobile App</option>
<option value="Web Browser">Web Browser</option>
<option value="Others">Others</option>
</select>
</div>
<div class="form-group">
<p class="general">
Feel free to share your views over here:
</p>
<textarea name="myViews" id="textarea" cols="30" rows="10"
placeholder="Enter your comments here..."></textarea>
</div>
<!-- Button -->
<div class="form-group">
<button type="submit" id="submit"> Submit </button>
</div>
</form>
</div>
</section>
<!-- Footer -->
<footer id="foot">
<div id="down">
© Food Delivery Survey Form • All Rights Reserved | Design by Adarsh
</div>
</footer>
</body>
</html>
<!-- Termination of the HTML Source Code -->