forked from khushi-joshi-05/Food-ordering-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
390 lines (313 loc) · 15.1 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
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
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Food Ordering Website</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"
integrity="sha512-z3gLpd7yknf1YoNbCzqRKc4qyor8gaKU1qmn+CShxbuBusANI9QpRohGBreCFkKxLhei6S9CQXFEbbKuqLg0DA=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="shortcut icon" type="image/x-icon" href="./Favicon image/favicon.ico">
<link
href="https://fonts.googleapis.com/css2?family=Fuggles&family=Mooli&family=Oswald:wght@600&family=Roboto:wght@100;300&display=swap"
rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Baloo+Bhai|Bree+Serif&display=swap" rel="stylesheet">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz"
crossorigin="anonymous"></script>
<link rel="stylesheet" href="./style.css">
<style>
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
</style>
</head>
<body>
<!--Navbar Start-->
<nav class="navbar navbar-expand-lg">
<div class="container-fluid">
<a class="navbar-brand" href="index.html"><b>Foodie</b></a>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav me-auto mb-2 mb-lg-0">
<li class="nav-item">
<a class="nav-link " aria-current="page" href="index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="Html-files/menu.html">Menu</a>
</li>
<li class="nav-item">
<a class="nav-link" href="Html-files/services.html">Services</a>
</li>
<li class="nav-item">
<a class="nav-link" href="Html-files/services.html">Services</a>
</li>
<li class="nav-item">
<a class="nav-link " href="Html-files/contact.html">Contact Us</a>
</li>
</ul>
</div>
<div class="d-flex p-2">
<li class="nav-item"><a class="nav-btn" onclick="redirectLogin()">Login</a></li>
<li class="nav-item"><a class="nav-btn" onclick="redirectSignup()">Sign Up</a></li>
<li class="nav-item">
<a class="nav-btn " href="Html-files/cart.html"><i class="fa-solid fa-cart-shopping"></i></a>
</li>
</div>
</div>
</nav>
<!--Navbar End-->
<section class="intro_container">
<h1>Welcome to foodie!</h1>
<p>A place with plethora of flavours from different regions be it our country or abroad can be enjoyed, where we
try to make your dining experience memorable with tech facilities and customisation and leave an expression
which will bring you back to us.</p>
<button class="btn">Order Now</button>
</section>
<section class="about_us">
<div class="move">
<div id="marque">
<h1 class="poppins-light">Get <span> 30% OFF </span> on your first order!</h1>
<h1 class="poppins-light">Get <span> 30% OFF </span> on your first order!</h1>
<h1 class="poppins-light">Get <span> 30% OFF </span> on your first order!</h1>
</div>
</div>
<h1 class="h-primary center">"Savor the Flavors: Discover What Sets Our Restaurant's Cuisine Apart!"</h1>
<!-- changes -->
<div id="about">
<div class="box">
<img src="https://shahidining.com.au/wp-content/uploads/2020/05/secret-to-indian-flavour-1536x864.jpg"
alt="">
<h2 class="h-secondary center">Authentic Indian Flavors</h2>
<p class="center">From aromatic curries to flavorful biryanis, our menu showcases the diversity and
deliciousness of Indian cuisine.
</p>
</div>
<div class="box">
<img src="https://saavi.com.au/wp-content/uploads/2016/02/image0023-1.jpg" alt="">
<h2 class="h-secondary center">Tech-Infused Dining Experience</h2>
<p class="center">
Customers can use apps to place orders, customize their dishes, and even provide feedback, making
their visit more convenient and interactive.
</p>
</div>
<div class="box">
<img src="https://i.ndtvimg.com/i/2015-06/fusion-food_625x350_81434107799.jpg" alt="">
<h2 class="h-secondary center">Innovative Fusion Dishes</h2>
<p class="center">The combinations of Indian and international cuisines not only tantalize taste buds
but also provide unique experience.
</p>
</div>
</div>
</section>
<section class="service_container">
<div class="service">
<div class="box_main">
<h1>Bringing <br>happiness<br> to you</h1>
<p>Food is more than sustenance; it's a source of pure<br> happiness. From the first bite of a favorite
childhood dish<br> to the thrill of discovering new flavors, food has a unique<br> way of filling
our hearts with joy.</p>
</div>
<div class="box">
<h1>Online Delivery</h1><br>
<a href="#">Order Online</a>
</div>
<div class="box">
<h1>Click & Collect</h1><br>
<a href="#">Take out Order</a>
</div>
<div class="box">
<h1>Restaurant Dining</h1><br>
<a href="#">Book Table</a>
</div>
</div>
</section>
<section class="menu_container">
<div class="mainhead">
<h1>"Get ready to explore our delicious range of dishes!"</h1>
<p>"Welcome to a world of culinary delights where every bite tells a flavorful story. Explore our diverse
menu and savor the essence of exquisite dining." </p>
<button class="butt" onclick="window.location.href='Html-files/menu.html'">View Menu</button>
<!-- <button class="butt" onclick="window.open('Html-files/menu.html')">View Menu</button> -->
</div>
<div class="menu_items">
<div class="items">
<img
src="https://www.mumbailive.com/images/media/images/thali_1635502261446jpeg?bg=08394e&crop=5328%2C2991.157894736842%2C0%2C504.42105263157896&fit=crop&fm=webp&h=432.2807017543859&height=4000&w=770&width=5328">
<h3>Indian Thali</h3>
<p>Enjoy a thali full of traditional flavours and memotries</p>
</div>
<div class="items">
<img
src="https://imgmediagumlet.lbb.in/media/2018/04/5acf822418a23c0efc21496b_1523548708582.jpg?fm=webp&w=750&h=500&dpr=1">
<h3>Dessert</h3>
<p>Complete your meal with mouth watering delicacies</p>
</div>
<div class="items">
<img
src="https://imgmediagumlet.lbb.in/media/2019/07/5d27585dc18a2b0ed5739eb5_1562859613517.jpg?fm=webp&w=750&h=500&dpr=1">
<h3>Snacks</h3>
<p>Have a lighter version with deliciouis flavours</p>
</div>
<div class="items">
<img src="https://static.india.com/wp-content/uploads/2017/04/Juices-Delhi.jpg">
<h3>Juices</h3>
<p>Boost yourself up with fruit extracts</p>
</div>
</div>
</section>
<!-- <div class="deals_container">
</div> -->
<!-- <div class="location_container">
</div> -->
<!-- <div class="franchise_container">
</div> -->
<!-- <div class="rating_container">
</div> -->
<section class="section-meals" data-aos="fade-in" data-aos-duration="2000">
<ul class="meals-showcase clearfix">
<li>
<figure class="meal-photo">
<img src="Images/1.jpg" alt="food-image">
</figure>
</li>
<li>
<figure class="meal-photo">
<img src="Images/2.jpg" alt="food-image">
</figure>
</li>
<li>
<figure class="meal-photo">
<img src="Images/3.jpg" alt="food-image">
</figure>
</li>
<li>
<figure class="meal-photo">
<img src="Images/4.jpg" alt="food-image">
</figure>
</li>
</ul>
<ul class="meals-showcase clearfix">
<li>
<figure class="meal-photo">
<img src="Images/5.jpg" alt="food-image">
</figure>
</li>
<li>
<figure class="meal-photo">
<img src="Images/6.jpg" alt="food-image">
</figure>
</li>
<li>
<figure class="meal-photo">
<img src="Images/7.jpg" alt="food-image">
</figure>
</li>
<li>
<figure class="meal-photo">
<img src="Images/8.jpg" alt="food-image">
</figure>
</li>
</ul>
</section>
<div class="app_download">
<h4>Free Delivery!</h4>
<h2>Download the App now!</h2>
<br>
<p>For best discounts and free delivery download the app now from your Google Play Store or App Store.</p>
<a href="#"><img src="./Images/get_it_on_google_play_store.png" class="app-download-img"
alt="Get it on Google Play Store"></a>
<a href="#"><img src="./Images/download-on-the-app-store.png" class="app-download-img"
alt="Download on the Apple App Store"></a>
</div>
<div class="footer">
<!-- <h1>Sign-in</h1>
<div class="container">
<label for="uname"><b>Username</b></label>
<input type="text" placeholder="Enter Username" name="uname" required><br>
<label for="uname"><b>Contact</b></label>
<input type="number" placeholder="Enter Contact no." name="uname" required><br>
<label for="psw"><b>Password</b></label>
<input type="password" placeholder="Enter Password" name="psw" required><br><br>
<button type="submit">Login</button><br>
<label>
<input type="checkbox" checked="checked" name="remember"> Remember me
</label>
</div>
<br><br><br><br>
<hr> -->
<footer>
<div class="foot-panel2">
<ul>
<p>Our Pages</p>
<a href="#">Home</a>
<a href="/Html-files/menu.html">Menu</a>
<a href="/Html-files/services.html">Services</a>
<a href="/Html-files/contact.html">Contact us</a>
<a href="/Html-files/cart.html">Cart</a>
</ul>
<ul>
<p> Exclusive Offers</p>
<a href="#">Foodie Discounts</a>
<a href="#">Limited-Time Promotions</a>
<a href="#">Special Event Packages</a>
<a href="#">Membership Benefits</a>
<a href="#">Early Access to New Recipes</a>
<a href="#">VIP Foodie Events</a>
<a href="#">Personalized Culinary Experiences</a>
</ul>
<ul>
<p>Payment Products</p>
<a href="#">Secure Checkout</a>
<a href="#">Credit/Debit Cards</a>
<a href="#">Online Payment</a>
<a href="#">Mobile Wallets</a>
<a href="#">Contactless Payments</a>
</ul>
<form id="contactForm">
<h3>Contact Us!</h3>
<!-- <label for="name">Name:</label> -->
<!-- <input type="text" id="name" name="name" placeholder="Your Name" required>-->
<!-- <label for="email">Email:</label> -->
<input type="email" id="email" name="email" placeholder="Your Email" required>
<!-- <label for="message">Message:</label> -->
<textarea id="message" name="message" placeholder="Your Message" required></textarea>
<button id="butt" type="submit">Send Message</button>
</form>
</div>
<div class="foot_panel4">
<div class="pages">
<h4>Follow Us</h4>
<div class="social-icons">
<a class="fa-brands fa-facebook" href="https://facebook.com"></a>
<a class="fa-brands fa-instagram" href="https://instagram.com"></a>
<a class="fa-brands fa-twitter" href="https://twitter.com"></a>
</div>
<p>Stay connected with us on social media for the latest updates, recipes, and foodie adventures.
</p>
<div class="copyright">
© 2024 Foodies . All Rights Reserved. | Developed by <span id="author">
<a href="https://www.linkedin.com/in/khushi-joshi-95a587256/" target="_blank">Khushi
Joshi</a>
</div>
</div>
</footer>
</div>
<script>
window.addEventListener('beforeunload', function (event) {
localStorage.clear();
});
const btn = document.querySelector('.btn')
btn.onclick = () => {
location.href = "./Html-files/menu.html"
}
</script>
</body>
<script>
function redirectLogin() {
window.location.href = "Html-files/login.html";
}
function redirectSignup() {
window.location.href = "Html-files/signup.html";
}
</script>
</html>