-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
747 lines (697 loc) · 27.6 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
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
<!DOCTYPE html>
<html>
<head>
<!-- <meta name="viewport" content="width=device-width, initial-scale=1.0"> -->
<title>FOODY</title>
<link rel="stylesheet" href="css/general.css" />
<link rel="stylesheet" href="css/style.css" />
<link rel="stylesheet" href="css/queries.css" />
<script
defer
type="module"
src="https://unpkg.com/[email protected]/dist/ionicons/ionicons.esm.js"
></script>
<script
defer
nomodule
src="https://unpkg.com/[email protected]/dist/ionicons/ionicons.js"
></script>
<script defer src="js/script.js"></script>
</head>
<body>
<header class="header">
<nav class="nav">
<img class="logo" alt="FOODY Logo" src="images/logo.png" />
<ul class="nav__links">
<li class="nav__item">
<a class="nav__link" href="#section--1">Features</a>
</li>
<li class="nav__item">
<a class="nav__link" href="#section--2">Operations</a>
</li>
<li class="nav__item">
<a class="nav__link" href="#section--3">Testimonials</a>
</li>
<li class="nav__item">
<a class="nav__link" href="#section--4">Pricing</a>
</li>
<li class="nav__item">
<a class="nav__link nav__link--btn btn__signup" href="#section--5"
>Try for free</a
>
</li>
</ul>
<div class="resp__nav">
<ion-icon
class="resp__nav--menu menu-outline"
name="menu-outline"
></ion-icon>
<ion-icon
class="resp__nav--menu menu-close"
name="close-outline"
></ion-icon>
</div>
</nav>
<div class="main__header">
<div class="header__description">
<h1 class="header-main-heading">
<span class="highlight">Eat</span> Healthy,
<span class="highlight">Live</span> Healthy
</h1>
<h2 class="header__desc">
Food is essential to life therefore make it good. Eat nutritious
food every day that's customised to your preferences and dietary
requirements. Every day at your convenience, we will deliver the
meal you have chosen to your door. You can modify your delivery
schedule and address on a daily basis!
</h2>
<div class="header-btns">
<a class="btn__signup" href="#">Try for free</a>
<a class="btn btn__learn__more" href="">Learn More ↓</a>
</div>
<div class="header__tertiary__desc--div">
<div class="header__customer">
<img alt="smiley customer" src="images/face1.jpg" />
<img alt="smiley customer" src="images/face2.jpg" />
<img alt="smiley customer" src="images/face3.jpg" />
<img alt="smiley customer" src="images/face4.jpg" />
<img alt="smiley customer" src="images/face5.jpg" />
</div>
<div class="header__tertiary--desc">
<span class="header__tertiary__desc--span"
><span class="header__tertiary__desc-count">5,000+</span> people
started eating well.</span
>
</div>
</div>
</div>
<div class="header-img">
<img alt="header image" src="images/header.png" />
</div>
</div>
</header>
<main class="main">
<!-- FEATURES -->
<section class="section" id="section--1">
<div class="section-div">
<div class="section-header">
<h2 class="section-title">FEATURES</h2>
<h3 class="section-sub-title">
Start consuming healthy food at home without any effort.
</h3>
</div>
<div class="features">
<div class="features--tab-container">
<button
class="btn features__tab features__tab--1 features__tab--active"
data-tab="1"
>
<span>01.</span> Daily coverage
</button>
<button class="btn features__tab features__tab--2" data-tab="2">
<span>02.</span> Fast delivery
</button>
<button class="btn features__tab features__tab--3" data-tab="3">
<span>03.</span> 100% hygenic
</button>
<button class="btn features__tab features__tab--4" data-tab="4">
<span>04.</span> No order limit
</button>
</div>
<div class="features__content features__content--1">
<div class="features__icon features__icon--1">
<ion-icon name="calendar-outline"></ion-icon>
</div>
<h5 class="features__header">
You can eat for 365days of the yaer without any effort
</h5>
<p class="features__desc">
Food is essential to life therefore make it good. Eat nutritious
food every day that's customised to your preferences and dietary
requirements. Our subscription options give up to 365 days of
coverage each year. If that's what you prefer, you may also
order with greater flexibility. So you'll never have to cook
again!
</p>
</div>
<div
class="features__content features__content--2 features__content--hidden"
>
<div class="features__icon features__icon--2">
<ion-icon name="alarm-outline"></ion-icon>
</div>
<h5 class="features__header">
You can recieve your order quickly
</h5>
<p class="features__desc">
Food is essential to life therefore make it good. Eat nutritious
food every day that's customised to your preferences and dietary
requirements. Your tasty and nutritious meals will be delivered
to your door in thirty minutes. We work with the best chefs in
each area to assure your complete satisfaction.
</p>
</div>
<div
class="features__content features__content--3 features__content--hidden"
>
<div class="features__icon features__icon--3">
<ion-icon name="leaf-outline"></ion-icon>
</div>
<h5 class="features__header">
You can have nutritious food daily without skipping your dietry
plans
</h5>
<p class="features__desc">
Food is essential to life therefore make it good. Eat nutritious
food every day that's customised to your preferences and dietary
requirements. For meal preparation, we use fresh, organic, and
locally grown veggies. Animals are grown without the use of
hormones or antibiotics. It's more beneficial for your health,
the environment, and it tastes better!
</p>
</div>
<div
class="features__content features__content--4 features__content--hidden"
>
<div class="features__icon features__icon--4">
<ion-icon name="infinite-outline"></ion-icon>
</div>
<h5 class="features__header">
You can order anything you like to eat
</h5>
<p class="features__desc">
Food is essential to life therefore make it good. Eat nutritious
food every day that's customised to your preferences and dietary
requirements. Don't limit yourself, you can order whatever you
feel like to eat. You can select from our menu containing over
100 delicious meals. So order anything.
</p>
</div>
</div>
</div>
</section>
<!-- OPERATIONS -->
<section class="section" id="section--2">
<div class="section-div">
<div class="section-header">
<h2 class="section-title">OPERATIONS</h2>
<h3 class="section-sub-title">
In three easy steps, you can get your daily dose of health.
</h3>
</div>
<div class="operations">
<div class="operations_contents operations_contents--1">
<div class="step-img-box">
<img
class="operation__img"
alt="Personalize your meal app screen"
src="images/app-screen-1.png"
/>
</div>
<div>
<h3 class="operations-count">01</h3>
<h4 class="operations-title">Personalize your meal</h4>
<p class="operations-desc">
Never again waste time deciding what to eat! Foody AI will
generate a completely customised monthly food plan
specifically for you. It ensures that you get all of the
nutrients and vitamins you require, regardless of your diet!
</p>
</div>
</div>
<div class="operations_contents operations_contents--2">
<div>
<h3 class="operations-count">02</h3>
<h4 class="operations-title">Choose your monthly meal plan</h4>
<p class="operations-desc">
Once a month, choose your meal plan from the options provided
by Foody AI. You can adjust ingredients, swap out complete
meals, or even suggest your own recipes.
</p>
</div>
<div class="step-img-box">
<img
class="operation__img"
alt="Choose your monthly meal plan app screen"
src="images/app-screen-2.png"
/>
</div>
</div>
<div class="operations_contents operations_contents--3">
<div class="step-img-box">
<img
class="operation__img"
alt="Personalize your meal app screen"
src="images/app-screen-3.png"
/>
</div>
<div>
<h3 class="operations-count">03</h3>
<h4 class="operations-title">
Set your convenient time to deliver meals
</h4>
<p class="operations-desc">
Every day at your convenience, we will deliver the meal you
have chosen to your door. You can modify your delivery
schedule and address on a daily basis!
</p>
</div>
</div>
</div>
</div>
</section>
<!-- TESTIMONIALS -->
<section class="section" id="section--3">
<div class="section-div">
<div class="section-header">
<h2 class="section-title">TESTIMONIALS</h2>
<h3 class="section-sub-title">
Once you start, you will never stop using Foody AI.
</h3>
</div>
<div class="testimonials">
<div class="testimonials__div">
<div class="testimonials-content testimonials--1">
<img class="testimonials-face" src="images/test1.jpg" />
<span class="testimonials-quote">''</span>
<blockquote class="testimonials-desc">
Inexpensive, healthy and great-tasting meals, delivered right
to my home. We have lots of food delivery app here, but I
prefer Foody. My entire family loves Foody!
</blockquote>
<p class="testimonials-name">Anonymous</p>
<p class="testimonials-place">Place</p>
</div>
<div class="testimonials-content testimonials--2">
<img class="testimonials-face" src="images/test2.jpg" />
<span class="testimonials-quote">"</span>
<p class="testimonials-desc">
With my professional life, I had no time for cooking. Foody is
a life saver! I can't live without my daily meals now!
</p>
<p class="testimonials-name">Anonymous</p>
<p class="testimonials-place">Place</p>
</div>
<div class="testimonials-content testimonials--3">
<img class="testimonials-face" src="images/test3.jpg" />
<span class="testimonials-quote">"</span>
<p class="testimonials-desc">
I can get free time now after I have started ordering food
from Foody. I will get more time to spend with my family.
Everything is organic and vegan and without plastic.
</p>
<p class="testimonials-name">Anonymous</p>
<p class="testimonials-place">Place</p>
</div>
<div class="testimonials-content testimonials--4">
<img class="testimonials-face" src="images/test4.jpg" />
<span class="testimonials-quote">"</span>
<blockquote class="testimonials-desc">
I was looking for a quick and easy food delivery service. I
tried a lot of them and ended up with Foody as it keeps up my
dietry plans. Thanks for being my life saver.
</blockquote>
<p class="testimonials-name">Anonymous</p>
<p class="testimonials-place">Place</p>
</div>
</div>
<div class="prev-arr arr-btns">
<span class="left-arr arr">←</span>
</div>
<div class="next-arr arr-btns">
<span class="right-arr arr">→</span>
</div>
<div class="dots"></div>
</div>
</div>
</section>
<!-- PRICING -->
<section class="section" id="section--4">
<div class="section-div">
<div class="section-header">
<h2 class="section-title">PRICING</h2>
<h3 class="section-sub-title">
In three easy steps, you can get your daily dose of health.
</h3>
</div>
<div class="pricing">
<div class="pricing-tab pricing__tab--1">
<h3 class="pricing__title">Starter</h3>
<h4 class="pricing-price">
$<span class="pricing-rate">499</span>
<span class="pricing-desc"
>per month. That's just $16 per meal!</span
>
</h4>
<ul class="pricing-lists">
<li class="pricing-item">
<span class="pricing-icon"
><ion-icon name="fast-food-outline"></ion-icon
></span>
<span>1 meal per day</span>
</li>
<li class="pricing-item">
<span class="pricing-icon"
><ion-icon name="time-outline"></ion-icon></span
><span>Order from 11am to 8pm</span>
</li>
<li class="pricing-item">
<span class="pricing-icon"
><ion-icon name="archive-outline"></ion-icon></span
><span>Delivery is free</span>
</li>
<li class="pricing-item">
<span class="pricing-icon"
><ion-icon name="lock-open-outline"></ion-icon
></span>
</li>
<li class="pricing-item">
<span class="pricing-icon"
><ion-icon name="bookmarks-outline"></ion-icon
></span>
</li>
</ul>
<a class="btn__signup" href="#">Try for free</a>
</div>
<div class="pricing-tab pricing__tab--2">
<h3 class="pricing__title">Pro</h3>
<h4 class="pricing-price">
$<span class="pricing-rate">799</span>
<span class="pricing-desc"
>per month. That's just $26 per meal!</span
>
</h4>
<ul class="pricing-lists">
<li class="pricing-item">
<span class="pricing-icon"
><ion-icon name="fast-food-outline"></ion-icon
></span>
<span>2 meal per day</span>
</li>
<li class="pricing-item">
<span class="pricing-icon"
><ion-icon name="time-outline"></ion-icon></span
><span>Order from 11am to 11am</span>
</li>
<li class="pricing-item">
<span class="pricing-icon"
><ion-icon name="time-outline"
><ion-icon
name="archive-outline"
></ion-icon></ion-icon></span
><span>Delivery is free</span>
</li>
<li class="pricing-item">
<span class="pricing-icon"
><ion-icon name="lock-open-outline"></ion-icon></span
><span>Get access to latest recipes</span>
</li>
<li class="pricing-item">
<span class="pricing-icon"
><ion-icon name="bookmarks-outline"></ion-icon
></span>
</li>
</ul>
<a class="btn__signup" href="#">Try for free</a>
</div>
<div class="pricing-tab pricing__tab--3">
<h3 class="pricing__title">Premium</h3>
<h4 class="pricing-price">
$<span class="pricing-rate">1299</span>
<span class="pricing-desc"
>per month. That's just $43 per meal!</span
>
</h4>
<ul class="pricing-lists">
<li class="pricing-item">
<span class="pricing-icon"
><ion-icon name="fast-food-outline"></ion-icon></span
><span>2 meal per day</span>
</li>
<li class="pricing-item">
<span class="pricing-icon"
><ion-icon name="time-outline"></ion-icon></span
><span>Order 24/7</span>
</li>
<li class="pricing-item">
<span class="pricing-icon"
><ion-icon name="archive-outline"></ion-icon></span
><span>Delivery is free</span>
</li>
<li class="pricing-item">
<span class="pricing-icon"
><ion-icon name="lock-open-outline"></ion-icon></span
><span>Get access to latest recipes</span>
</li>
<li class="pricing-item">
<span class="pricing-icon"
><ion-icon name="bookmarks-outline"></ion-icon></span
><span>Modify delivery schedule, address and recipes</span>
</li>
</ul>
<a class="btn__signup" href="#">Try for free</a>
</div>
</div>
<p class="pricing-condition">
Prices include all applicable taxes. You can cancel at any time.
</p>
<div class="photo-gallery">
<div class="photo-image-div">
<img
class="photo-image"
alt="delicious food image"
src="images/pg/pg1.jpg"
/>
</div>
<div class="photo-image-div">
<img
class="photo-image"
alt="delicious food image"
src="images/pg/pg9.jpg"
/>
</div>
<div class="photo-image-div">
<img
class="photo-image"
alt="delicious food image"
src="images/pg/pg7.jpg"
/>
</div>
<div class="photo-image-div">
<img
class="photo-image"
alt="delicious food image"
src="images/pg/pg2.jpg"
/>
</div>
<div class="photo-image-div">
<img
class="photo-image"
alt="delicious food image"
src="images/pg/pg10.jpg"
/>
</div>
<div class="photo-image-div">
<img
class="photo-image"
alt="delicious food image"
src="images/pg/pg5.jpg"
/>
</div>
<div class="photo-image-div">
<img
class="photo-image"
alt="delicious food image"
src="images/pg/pg11.jpg"
/>
</div>
<div class="photo-image-div">
<img
class="photo-image"
alt="delicious food image"
src="images/pg/pg3.jpg"
/>
</div>
<div class="photo-image-div">
<img
class="photo-image"
alt="delicious food image"
src="images/pg/pg12.jpg"
/>
</div>
<div class="photo-image-div">
<img
class="photo-image"
alt="delicious food image"
src="images/pg/pg4.jpg"
/>
</div>
<div class="photo-image-div">
<img
class="photo-image"
alt="delicious food image"
src="images/pg/pg8.jpg"
/>
</div>
<div class="photo-image-div">
<img
class="photo-image"
alt="delicious food image"
src="images/pg/pg6.jpg"
/>
</div>
</div>
<!-- </div> -->
</div>
</section>
<!-- SIGNUP FOR FREE -->
<section class="section" id="section--5">
<div class="section-div">
<h3 class="section-sub-title">
The best day to join
<img class="logo" alt="FOODY Logo" src="images/logo.png" /> was
yesterday. The next best day is today! Join immediately and grab the
best deals!
</h3>
<div class="signup">
<a class="btn__signup" href="#">Try for free</a>
</div>
</div>
</section>
</main>
<footer class="footer">
<div class="footer-div">
<ul class="footer-lists">
<li class="footer-link"><a class="footer-item" href="#">About</a></li>
<li class="footer-link">
<a class="footer-item" href="#">Pricing</a>
</li>
<li class="footer-link">
<a class="footer-item" href="#">Terms of Use</a>
</li>
<li class="footer-link">
<a class="footer-item" href="#">Privacy Ploicy</a>
</li>
<li class="footer-link">
<a class="footer-item" href="#">Contact Us</a>
</li>
</ul>
<img class="footer-logo" alt="FOODY Logo" src="images/logo.png" />
<ul class="footer-lists">
<li class="footer-link">
<a class="footer-item" href="#"
><ion-icon name="logo-instagram"></ion-icon
></a>
</li>
<li class="footer-link">
<a class="footer-item" href="#"
><ion-icon name="logo-facebook"></ion-icon
></a>
</li>
<li class="footer-link">
<a class="footer-item" href="#"
><ion-icon name="logo-twitter"></ion-icon
></a>
</li>
</ul>
<p class="copyright">
© Copyright by Anusha Salian. All rights reserved.
</p>
<div class="credits">
Credits :
<a href="https://www.udemy.com/user/jonasschmedtmann/"
>Jonas Schmedtmann</a
>
and
<a href="https://unsplash.com/">unsplash.com</a>
</div>
</div>
</footer>
<div class="backdrop hide"></div>
<div class="modal hide">
<div class="modal-div">
<div
class="modal__img__div"
role="img"
aria-label="Woman having her meal"
></div>
<div class="modal__form__div">
<button class="close__modal">X</button>
<h3 class="modal-title">Signup to get your first meal for free!</h3>
<p class="modal-description">
Healthy, tasty and hassle-free meals are waiting for you. Start
eating well. You can cancel or pause anytime.
</p>
<form class="modal-form">
<div>
<label class="form__label full__name" for="full-name"
>Full Name</label
>
<input
class="format_input"
id="full-name"
type="text"
placeholder="Anusha Salian"
/>
</div>
<div>
<label class="form__label email" for="e-mail">Email</label>
<input
class="format_input"
id="e-mail"
type="text"
placeholder="[email protected]"
/>
</div>
<div>
<label class="form__label hear-us" for="hear-us">
How do you know us?</label
>
<select class="format_input" name="option" id="hear">
<option class="option__nil" value="Nil">
Please choose an option
</option>
<option value="ff">Friends and family</option>
<option value="fb">Facebook</option>
<option value="ig">Instagram</option>
<option value="np">Newspaper</option>
<option value="ot">Others</option>
</select>
</div>
<a class="form__btn" href="#">Try for free</a>
</form>
</div>
</div>
</div>
</body>
</html>
<!-- <!DOCTYPE html>
<html>
<head>
<link
href="https://fonts.googleapis.com/css?family=Rubik"
rel="stylesheet"
/>
<style>
h1 {
font-family: "Rubik";
font-size: 36px;
color: #333;
letter-spacing: 1.25px;
}
span {
font-size: 36px;
color: #e67e22;
/* letter-spacing: -6px; */
}
</style>
</head>
<body>
<h1>F<span>OO</span>DY</h1>
</body>
</html>
<!-- http://www.omnifood.net/#features -->
<!-- https://dribbble.com/shots/15363785-Omnifood-Web-Design/attachments/7125409?mode=media -->
<!-- https://dribbble.com/tags/omnifood -->
<!-- https://omnifood.aniqa.dev/ -->
<!-- https://ezekielcarvalho.github.io/Omnifood/index.html -->