-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
522 lines (466 loc) · 20.2 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
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<!-- Css Styles Sheet -->
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-giJF6kkoqNQ00vy+HMDP7azOuL0xtbfIcaT9wjKHr8RbDVddVHyTfAAsrekwKmP1" crossorigin="anonymous" />
<!-- Animate Css link -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css" />
<!-- Google fonts -->
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Khula:wght@600&display=swap" rel="stylesheet">
<!-- Font awesomw icons -->
<script src="https://kit.fontawesome.com/dada1a77bc.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="styles.css">
<title>Foodie</title>
</head>
<body>
<!-- Navbar Section -->
<div class="container">
<nav class="navbar navbar-expand-lg navbar-light ">
<a class="navbar-brand" style="font-weight:700;" href="#">Foodie</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNavDropdown"
aria-controls="navbarNavDropdown" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse justify-content-end" id="navbarNavDropdown">
<ul class="navbar-nav ">
<li class="nav-item">
<a class="nav-link " aria-current="page" href="#">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#tofeatures">Features</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#tomenu">Pricing</a>
</li>
</ul>
</div>
</div>
</nav>
</div>
<div class="container" style="overflow: hidden;">
<div class="row">
<div class="col-lg-6 col-sm-12">
<h2 class="hero-text">Your Favourite Food Delivered Hot & Fresh</h2>
<h6 class="hero-description">Healthy switcher chefs do all the prep work, like peeeling, chopping & marination,
so that you can cook a fresh food</h6>
<button class="btn btn-warning orderbtn ">Order Now
</button>
</div>
<div class="col-lg-6 col-sm-12">
<img src="./wave1.svg" alt="bottom-left-svg" class="bottom-left-svg">
<img class="animate__animated animate__fadeInRight img-fluid hero-food" src="./images/food-1.png"
alt="food-image">
</div>
</div>
</div>
<!-- Peanuts by the side -->
<div class="container-fluid side-nuts-container">
<img class="img side-nuts" src="./images/big-nuts.png" alt="food-image">
</div>
</div>
</div>
<!-- hours, address and phone number section -->
<div class="container" id="tofeatures">
<div class="row">
<!-- 1st card -->
<div class="col-lg-4 col-md-12 my-2 col-sm-12 ">
<div class="card mx-auto noborder" style="width: 18rem;">
<div class="card-body text-center small-card">
<i class="fas fa-clock fa-3x"></i>
<h5 class="card-title">Today 10:00am - 7:00pm</h5>
<p class="card-text">Working Hours</p>
</div>
</div>
</div>
<!-- 2nd card -->
<div class="col-lg-4 col-md-12 my-2 col-sm-12 ">
<div class="card mx-auto noborder" style="width: 18rem; ">
<div class="card-body text-center small-card ">
<i class="fas fa-map-marker-alt fa-3x"></i>
<h5 class="card-title">Special title treatment</h5>
<p class="card-text">Unknown Location</p>
</div>
</div>
</div>
<!-- 3rd card -->
<div class="col-lg-4 col-md-12 my-2 col-sm-12 ">
<div class="card mx-auto noborder" style="width: 18rem;">
<div class="card-body text-center small-card">
<i class="fas fa-phone-alt fa-3x"></i>
<h5 class="card-title">+2348156210785</h5>
<p class="card-text">Call Telephone.</p>
</div>
</div>
</div>
</div>
</div>
<!-- Learn More Section -->
<div class="container learn-more">
<img src="./wave.svg" alt="top-right-svg" class="top-right-svg">
<div class="row">
<div class="col-lg-5 col-md-12 col-sm-12">
<img width="700px" src="./images/food7.png" alt="second-food" class="img img-fluid">
</div>
<div class="col-lg-5 col-md-12 col-sm-12">
<p>About</p>
<h3>Food is An Inportant Part of A Balanced Diet</h3>
<p>They actually assured me over and over that little time off and comeback anc work. Fast forward two weeks
after, we are going for a new project</p>
<p>I wrote a letter to let them know when they are ready to come back. They kicked me out of their slack team
because all of use hated company email.</p>
<button class="btn btn-warning orderbtn ">Learn More
</button>
</div>
</div>
</div>
<div class="container text-center how-it-works">
<div class="row justify-content-center">
<h5>work</h5>
<h3>How it Works</h3>
<p style="margin-bottom: 0px;">It's through mistakes that you can actually grow.</p>
<p> You get rid of everything that is not essential to mankind to get bad</p>
<!-- cards -->
<div class="card text-center mx-auto my-2 noborder " style="width: 18rem;">
<div class="card-body">
<i class="fas fa-hamburger fa-3x"></i>
<h5 class="card-title">Pick Meals</h5>
<p class="card-text">With supporting text below as a natural lead-in to additional content.</p>
</div>
</div>
<div class="card text-center mx-auto my-2 noborder " style="width: 18rem;">
<div class="card-body">
<i class="fas fa-hand-pointer fa-3x"></i>
<h5 class="card-title">Choose How Often</h5>
<p class="card-text">With supporting text below as a natural lead-in to additional content.</p>
</div>
</div>
<div class="card text-center mx-auto my-2 noborder " style="width: 18rem;">
<div class="card-body">
<i class="fas fa-truck fa-3x"></i>
<h5 class="card-title">Fast Deliveries</h5>
<p class="card-text">With supporting text below as a natural lead-in to additional content.</p>
</div>
</div>
</div>
</div>
<!-- Menu Section -->
<div class="container">
<div class="row text-center" id="tomenu">
<h5>Menu</h5>
<h3>Explore Our Best Menu</h3>
<p style="margin-bottom: 0px;">It's through mistakes that you can actually grow.</p>
<p> You get rid of everything that is not essential to mankind to get bad</p>
</div>
<!-- cards -->
<div class="container">
<div class="row">
<!-- Per Card -->
<div class="card my-5 px-0 mx-auto col-lg-4 col-md-3 col-sm-12 noborder "
style="width: 25rem; border-top-right-radius:3rem; border-bottom-left-radius:3rem;">
<div style="width: 100%; margin-bottom: 1rem; border-bottom-left-radius:3rem;">
<img src="./images/food-3.png" class="card-img-top img-fluid " style="object-fit: contain;" alt="image">
</div>
<div class="card-body p-0">
<div class="row text-left">
<h4 style="display: flex; justify-content: space-between; margin-bottom: 0;padding: 0 2rem;">
<p style="margin-bottom: 0; ">Pick Meals</p>
<p style="margin-bottom: 0;">12$</p>
</h4>
<p class="text-left" style="padding-left: 2rem;">Salad with french fries + drink</p>
</div>
<p style="padding:0 1rem;">Choice of: Cooke, Fanta, Sprite, Upgrade to large fries. Add whopper patty,
tender
crispy patty and more</p>
<div style="
display: flex;
justify-content: space-between;
overflow: hidden; ">
<div style="margin-top:1.5rem ;margin-left: 1rem;">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
<div style="background-color: orange; position: relative;border-top-left-radius:3rem;
right: -10px; ">
<i class="fas fa-plus fa-2x" style="margin: 1.5rem 3rem; color: white; "></i>
</div>
</div>
</div>
</div>
<!--End Per Card -->
<!-- Per Card -->
<div class="card my-5 px-0 mx-auto col-lg-4 col-md-3 col-sm-12 noborder "
style="width: 25rem; border-top-right-radius:3rem; border-bottom-left-radius:3rem;">
<div style="width: 100%; margin-bottom: 1rem; border-bottom-left-radius:3rem;">
<img src="./images/food-3.png" class="card-img-top img-fluid " style="object-fit: contain;" alt="image">
</div>
<div class="card-body p-0">
<div class="row text-left">
<h4 style="display: flex; justify-content: space-between; margin-bottom: 0;padding: 0 2rem;">
<p style="margin-bottom: 0; ">Pick Meals</p>
<p style="margin-bottom: 0;">12$</p>
</h4>
<p class="text-left" style="padding-left: 2rem;">Salad with french fries + drink</p>
</div>
<p style="padding:0 1rem;">Choice of: Cooke, Fanta, Sprite, Upgrade to large fries. Add whopper patty,
tender
crispy patty and more</p>
<div style="
display: flex;
justify-content: space-between;
overflow: hidden; ">
<div style="margin-top:1.5rem ;margin-left: 1rem;">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
<div style="background-color: orange; position: relative;border-top-left-radius:3rem;
right: -10px; ">
<i class="fas fa-plus fa-2x" style="margin: 1.5rem 3rem; color: white; "></i>
</div>
</div>
</div>
</div>
<!--End Per Card -->
<!-- Per Card -->
<div class="card my-5 px-0 mx-auto col-lg-4 col-md-3 col-sm-12 noborder "
style="width: 25rem; border-top-right-radius:3rem; border-bottom-left-radius:3rem;">
<div style="width: 100%; margin-bottom: 1rem; border-bottom-left-radius:3rem;">
<img src="./images/food-3.png" class="card-img-top img-fluid " style="object-fit: contain;" alt="image">
</div>
<div class="card-body p-0">
<div class="row text-left">
<h4 style="display: flex; justify-content: space-between; margin-bottom: 0;padding: 0 2rem;">
<p style="margin-bottom: 0; ">Pick Meals</p>
<p style="margin-bottom: 0;">12$</p>
</h4>
<p class="text-left" style="padding-left: 2rem;">Salad with french fries + drink</p>
</div>
<p style="padding:0 1rem;">Choice of: Cooke, Fanta, Sprite, Upgrade to large fries. Add whopper patty,
tender
crispy patty and more</p>
<div style="
display: flex;
justify-content: space-between;
overflow: hidden; ">
<div style="margin-top:1.5rem ;margin-left: 1rem;">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
<div style="background-color: orange; position: relative;border-top-left-radius:3rem;
right: -10px; ">
<i class="fas fa-plus fa-2x" style="margin: 1.5rem 3rem; color: white; "></i>
</div>
</div>
</div>
</div>
<!--End Per Card -->
<!-- Per Card -->
<div class="card my-5 px-0 mx-auto col-lg-4 col-md-3 col-sm-12 noborder"
style="width: 25rem; border-top-right-radius:3rem; border-bottom-left-radius:3rem;">
<div style="width: 100%; margin-bottom: 1rem; border-bottom-left-radius:3rem;">
<img src="./images/food-3.png" class="card-img-top img-fluid " style="object-fit: contain;" alt="image">
</div>
<div class="card-body p-0">
<div class="row text-left">
<h4 style="display: flex; justify-content: space-between; margin-bottom: 0;padding: 0 2rem;">
<p style="margin-bottom: 0; ">Pick Meals</p>
<p style="margin-bottom: 0;">12$</p>
</h4>
<p class="text-left" style="padding-left: 2rem;">Salad with french fries + drink</p>
</div>
<p style="padding:0 1rem;">Choice of: Cooke, Fanta, Sprite, Upgrade to large fries. Add whopper patty,
tender
crispy patty and more</p>
<div style="
display: flex;
justify-content: space-between;
overflow: hidden; ">
<div style="margin-top:1.5rem ;margin-left: 1rem;">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
<div style="background-color: orange; position: relative;border-top-left-radius:3rem;
right: -10px; ">
<i class="fas fa-plus fa-2x" style="margin: 1.5rem 3rem; color: white; "></i>
</div>
</div>
</div>
</div>
<!--End Per Card -->
<!-- Per Card -->
<div class="card my-5 px-0 mx-auto col-lg-4 col-md-3 col-sm-12 noborder "
style="width: 25rem; border-top-right-radius:3rem; border-bottom-left-radius:3rem;">
<div style="width: 100%; margin-bottom: 1rem; border-bottom-left-radius:3rem;">
<img src="./images/food-3.png" class="card-img-top img-fluid " style="object-fit: contain;" alt="image">
</div>
<div class="card-body p-0">
<div class="row text-left">
<h4 style="display: flex; justify-content: space-between; margin-bottom: 0;padding: 0 2rem;">
<p style="margin-bottom: 0; ">Pick Meals</p>
<p style="margin-bottom: 0;">12$</p>
</h4>
<p class="text-left" style="padding-left: 2rem;">Salad with french fries + drink</p>
</div>
<p style="padding:0 1rem;">Choice of: Cooke, Fanta, Sprite, Upgrade to large fries. Add whopper patty,
tender
crispy patty and more</p>
<div style="
display: flex;
justify-content: space-between;
overflow: hidden; ">
<div style="margin-top:1.5rem ;margin-left: 1rem;">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
<div style="background-color: orange; position: relative;border-top-left-radius:3rem;
right: -10px; ">
<i class="fas fa-plus fa-2x" style="margin: 1.5rem 3rem; color: white; "></i>
</div>
</div>
</div>
</div>
<!--End Per Card -->
<!-- Per Card -->
<div class="card my-5 px-0 mx-auto col-lg-4 col-md-3 col-sm-12 noborder animate"
style="width: 25rem; border-top-right-radius:3rem; border-bottom-left-radius:3rem;">
<div style="width: 100%; margin-bottom: 1rem; border-bottom-left-radius:3rem;">
<img src="./images/food-3.png" class="card-img-top img-fluid " style="object-fit: contain;" alt="image">
</div>
<div class="card-body p-0">
<div class="row text-left">
<h4 style="display: flex; justify-content: space-between; margin-bottom: 0;padding: 0 2rem;">
<p style="margin-bottom: 0; ">Pick Meals</p>
<p style="margin-bottom: 0;">12$</p>
</h4>
<p class="text-left" style="padding-left: 2rem;">Salad with french fries + drink</p>
</div>
<p style="padding:0 1rem;">Choice of: Cooke, Fanta, Sprite, Upgrade to large fries. Add whopper patty,
tender
crispy patty and more</p>
<div style="
display: flex;
justify-content: space-between;
overflow: hidden; ">
<div style="margin-top:1.5rem ;margin-left: 1rem;">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
<div style="background-color: orange; position: relative;border-top-left-radius:3rem;
right: -10px; ">
<i class="fas fa-plus fa-2x" style="margin: 1.5rem 3rem; color: white; "></i>
</div>
</div>
</div>
</div>
<!--End Per Card -->
<div class="container text-center">
<button class="btn btn- orderbtn">Load More</button>
</div>
</div>
</div>
</div>
</div>
<div class="container ">
<div class="row text-center justify-content-center">
<h5>Testimonial</h5>
<h3>What They Are Saying</h3>
<p class="mb-0">It's through mistakes that you actually can grow you get </p>
<p>rid of everything that is not essential to makihave to get bad.</p>
<div class="review">
<img src="./images/food-1.png" class="reviewer" alt="">
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Atque, modi repellendus? Doloribus dolor inventore
harum ut magnam deleniti quidem eligendi obcaecati temporibus?</p>
<div style="margin-top:1.5rem ;margin-left: 1rem;">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
</div>
<h3 class="mt-5">Have A Question in mind?</h3>
<h3 class="mb-5">Let Us Help You</h3>
</div>
<!-- form -->
</div>
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-6 ">
<div class="input-group mb-5">
<input type="text" class="form-control" placeholder="[email protected]" aria-label="Recipient's username"
aria-describedby="button-addon2">
<div class="input-group-append">
<button class="btn btn-warning" type="button" id="button-addon2"
style="background-color: orange; color: white;">Button</button>
</div>
</div>
</div>
</div>
</div>
<!-- TODO: Add a "go back to top button with a sticky position" -->
<!-- footer -->
<!-- Scripts blow -->
<!-- Scripts blow -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-ygbV9kiqUc6oa4msXn9868pTtWMgiQaeYH7/t7LECLbyPA2x65Kgf80OJFdroafW"
crossorigin="anonymous"></script>
<script src="main.js"></script>
</body>
<footer>
<div class="container">
<div class="row">
<div class="col-lg-3">
<h2>Foodie</h2>
</div>
<div class="col-lg-9 footer-address justify-content-center">
<h5 class="foot-item">Home</h5>
<h5 class="foot-item">Packages</h5>
<h5 class="foot-item">About Us</h5>
<h5 class="foot-item">Contact Us</h5>
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-3 mt-2">
<i class="fab fa-facebook-f fa-2x"></i>
<i class="fab fa-youtube fa-2x"></i>
<i class="fab fa-vimeo-v fa-2x"></i>
<i class="fab fa-twitter fa-2x"></i>
</div>
<div class="col-lg-3">
<h6>Quality</h6>
<h6>Help</h6>
<h6>Shares</h6>
<h6>Careers</h6>
</div>
<div class="col-lg-3">
<h6>+2348156210785</h6>
<h6>[email protected]</h6>
<h6>[email protected]</h6>
</div>
<div class="col-lg-3">
<h6>Terms and Conditions</h6>
<h6>Privacy Policy</h6>
</div>
</div>
</div>
<div class="container mt-5 text-center">
<h6>Designed by
<a href="https://www.behance.net/Shakibali" class="footer-links">Shakib Ali</a> From behance ...
Developed By
<a href="https://www.instagram.com/growing_dev/" class="footer-links" target="_blank"
rel="noopener noreferrer">Samuel Valentine</a>
</h6>
</div>
</footer>
</html>