-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
265 lines (260 loc) · 10.4 KB
/
index.html
File metadata and controls
265 lines (260 loc) · 10.4 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
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>TiffinBites - Fuel Your Day with Flavourful Tiffins!</title>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/remixicon/4.6.0/remixicon.css"
integrity="sha512-kJlvECunwXftkPwyvHbclArO8wszgBGisiLeuDFwNM8ws+wKIw0sv1os3ClWZOcrEB2eRXULYUsm8OVRGJKwGA=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
<link rel="shortcut icon" href="./Assets/favicon.png" type="image/x-icon" />
<link rel="stylesheet" href="style.css" />
</head>
<body>
<!-- ! HOME PAGE STARTS HERE -->
<section id="home_page">
<nav>
<aside id="nav_one">
<h2 id="logo">TiffinBites</h2>
</aside>
<aside id="nav_two">
<a href="#menu_page">Menu</a>
<a href="#about_page">About</a>
<a href="#feedback_page">Feedback</a>
</aside>
<aside id="nav_three">
<i class="ri-shopping-cart-2-line" id="cart_icon"></i>
<div id="quantity">0</div>
<p id="price">₹0.00</p>
</aside>
</nav>
<header>
<h1 id="tagline">
Fuel Your Day with <br />
Flavourful Tiffins!
</h1>
<button id="explore_btn">Explore Menu</button>
</header>
</section>
<!-- !HOME PAGE ENDS HERE -->
<!-- !CART-POPUP STARTS HERE -->
<main>
<section id="popup_container">
<h2>Your Order Summary</h2>
<div id="cart_details">No items in the cart</div>
<hr>
<p id="cart_total_items">Total Items : <span>0</span></p>
<p id="cart_total_price">Total Price : ₹<span>0.00</span></p>
<button>Close</button>
</section>
</main>
<!-- !CART-POPUP ENDS HERE -->
<!-- !MENU PAGE STARTS HERE -->
<section id="menu_page">
<aside id="menu_one">
<h2>Menu</h2>
<input type="text" id="search_field" placeholder="Search Tiffins..." />
</aside>
<aside id="menu_two">
<article class="card_container" id="idli">
<img src="./Assets/Idli.png" alt="Idli" class="food_img" />
<h2 class="food_title">Idli</h2>
<h4 class="food_price">₹40</h4>
<div class="food_quantity">
<button class="quantity_btns">-</button>
<span>0</span>
<button class="quantity_btns">+</button>
</div>
</article>
<article class="card_container" id="masaladosa">
<img src="./Assets/MasalaDosa.png" alt="Dosa" class="food_img" />
<h2 class="food_title">Masala Dosa</h2>
<h4 class="food_price">₹50</h4>
<div class="food_quantity">
<button class="quantity_btns">-</button>
<span>0</span>
<button class="quantity_btns">+</button>
</div>
</article>
<article class="card_container" id="meduvada">
<img src="./Assets/MeduVada.png" alt="Vada" class="food_img" />
<h2 class="food_title">Medu Vada</h2>
<h4 class="food_price">₹30</h4>
<div class="food_quantity">
<button class="quantity_btns">-</button>
<span>0</span>
<button class="quantity_btns">+</button>
</div>
</article>
<article class="card_container" id="pesarattu">
<img src="./Assets/pesarattu.jpg" alt="pesarattu" class="food_img" />
<h2 class="food_title">Pesarattu</h2>
<h4 class="food_price">₹50</h4>
<div class="food_quantity">
<button class="quantity_btns">-</button>
<span>0</span>
<button class="quantity_btns">+</button>
</div>
</article>
<article class="card_container" id="pongal">
<img src="./Assets/Pongal.jpg" alt="Pongal" class="food_img" />
<h2 class="food_title">Pongal</h2>
<h4 class="food_price">₹35</h4>
<div class="food_quantity">
<button class="quantity_btns">-</button>
<span>0</span>
<button class="quantity_btns">+</button>
</div>
</article>
<article class="card_container" id="puri">
<img src="./Assets/puri.webp" alt="puri" class="food_img" />
<h2 class="food_title">Puri</h2>
<h4 class="food_price">₹50</h4>
<div class="food_quantity">
<button class="quantity_btns">-</button>
<span>0</span>
<button class="quantity_btns">+</button>
</div>
</article>
<article class="card_container" id="ravadosa">
<img src="./Assets/RavaDosa.jpg" alt="RavaDosa" class="food_img" />
<h2 class="food_title">Rava Dosa</h2>
<h4 class="food_price">₹60</h4>
<div class="food_quantity">
<button class="quantity_btns">-</button>
<span>0</span>
<button class="quantity_btns">+</button>
</div>
</article>
<article class="card_container" id="upma">
<img src="./Assets/Upma.png" alt="Upma" class="food_img" />
<h2 class="food_title">Upma</h2>
<h4 class="food_price">₹45</h4>
<div class="food_quantity">
<button class="quantity_btns">-</button>
<span>0</span>
<button class="quantity_btns">+</button>
</div>
</article>
<article class="card_container" id="uttapam">
<img src="./Assets/uttapam.jpg" alt="uttapam" class="food_img" />
<h2 class="food_title">Uttapam</h2>
<h4 class="food_price">₹60</h4>
<div class="food_quantity">
<button class="quantity_btns">-</button>
<span>0</span>
<button class="quantity_btns">+</button>
</div>
</article>
<article class="card_container" id="poha">
<img src="./Assets/Poha.jpg" alt="Poha" class="food_img" />
<h2 class="food_title">Poha</h2>
<h4 class="food_price">₹30</h4>
<div class="food_quantity">
<button class="quantity_btns">-</button>
<span>0</span>
<button class="quantity_btns">+</button>
</div>
</article>
<article class="card_container" id="bonda">
<img src="./Assets/Bonda.avif" alt="Bonda" class="food_img" />
<h2 class="food_title">Bonda</h2>
<h4 class="food_price">₹40</h4>
<div class="food_quantity">
<button class="quantity_btns">-</button>
<span>0</span>
<button class="quantity_btns">+</button>
</div>
</article>
<article class="card_container" id="gheekaramdosa">
<img
src="./Assets/GheeKaramDosa.jpg"
alt="GheeKaramDosa"
class="food_img"
/>
<h2 class="food_title">Ghee Karam Dosa</h2>
<h4 class="food_price">₹70</h4>
<div class="food_quantity">
<button class="quantity_btns">-</button>
<span>0</span>
<button class="quantity_btns">+</button>
</div>
</article>
</aside>
</section>
<!-- !MENU PAGE ENDS HERE -->
<!-- !ABOUT PAGE STARTS HERE -->
<section id="about_page">
<aside id="about_one">
<img src="./Assets/AboutPageImg.png" alt="About_Img" id="about_img">
</aside>
<aside id="about_two">
<h2 id="about_us">About Us</h2>
<p id="about_para1" class="about_paras"><b>Welcome to TiffinBites,</b> your go-to destination for authentic South Indian flavors in the heart of Hyderabad! We serve delicious home-style meals made fresh every day.</p>
<p id="about_para2" class="about_paras"><b>Our Story:</b> Born out of a love for traditional food, TiffinBites began as a small family-run venture aiming to bring homely and hygienic tiffin to busy working professionals and students.</p>
<p id="about_para3" class="about_paras"><b>Timings: 7:00 AM - 10:00 PM (All days)</b></p>
<p id="about_para4" class="about_paras"><b>Location: Chaitanyapuri, Hyderabad, Telangana, India</b></p>
<article id="testimonal">“We care about your hunger as much as we care about taste. One bite at a time, we make your day better!”</article>
<article id="social_media_icons">
<div class="icon">
<i class="ri-facebook-line"></i>
</div>
<div class="icon">
<i class="ri-instagram-line"></i>
</div>
<div class="icon">
<i class="ri-whatsapp-line"></i>
</div>
</article>
</aside>
</section>
<!-- !ABOUT PAGE ENDS HERE -->
<!-- !FEEDBACK PAGE STARTS HERE -->
<section id="feedback_page">
<aside id="feedback_one">
<h3>Feedback Form</h3>
<p>Your feedback helps us to serve you better!</p>
</aside>
<aside id="feedback_two">
<form action="https://api.web3forms.com/submit" method="POST">
<input type="hidden" name="access_key" value="2cf614c0-85b2-4c60-a6b5-bd6e740cc701">
<div class="form_fields">
<label for="name">Full Name</label>
<input type="text" id="name" name="name" placeholder="Enter your name">
</div>
<div class="form_fields">
<label for="email">Email</label>
<input type="email" id="email" name="email" placeholder="Enter your email">
</div>
<div class="form_fields">
<label for="ratings">Ratings</label>
<select name="ratings" id="ratings">
<option disabled selected>Choose Ratings</option>
<option>5 (Excellent)</option>
<option>4 (Good)</option>
<option>3 (Bad)</option>
<option>2 (Poor)</option>
<option>1 (Worst)</option>
</select>
</div>
<div class="form_fields" id="textarea_field">
<label for="comments">Comments</label>
<textarea name="comments" id="comments" placeholder="Write your feedback here..." ></textarea>
</div>
<div class="form_fields">
<input type="submit" value="Submit Feedback" id="submit_feedback">
</div>
</form>
</aside>
<aside id="feedback_three">
<p>© Tiffin Bites | All Rights Reserved</p>
</aside>
</section>
<!-- !FEEDBACK PAGE ENDS HERE -->
<script src="./script.js"></script>
</body>
</html>