-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
581 lines (450 loc) · 20.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Foody</title>
<link rel="icon" type="image/svg" href="icons/logo.svg">
<!-- font awesome -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.1/css/all.min.css"
integrity="sha512-+4zCK9k+qNFUR5X+cKL9EIR+ZOhtIloNl9GIKS57V1MyNsYpYcUrUeQc9vNfzsWfV28IaLL3i96P9sdNyeRssA=="
crossorigin="anonymous" />
<!-- stylesheet sass -->
<link rel="stylesheet" href="./css/main.css">
</head>
<body>
<!-- HEADER -->
<header class="header">
<!-- NAVBAR -->
<nav class="navbar ">
<div class="logo">
<img src="./icons/logo.svg" alt="foody logo">
<h2>Foody</h2>
</div>
<!-- NAVLINKS -->
<div class="navlinks">
<a href="#index.html" class="nav__link">home</a>
<a href="#about" class="nav__link">about</a>
<a href="#service" class="nav__link">services</a>
<a href="#items" class="nav__link">items</a>
<a href="#contact" class="nav__link">contact</a>
</div>
<!-- END NAVLINKS -->
<div class="menu">
<i class="fas fa-bars"></i>
</div>
</nav>
<!-- END NAVBAR -->
</header>
<!-- END HEADER -->
<!-- SIDEBAR -->
<aside class="sidebar">
<div class="side__logo">
<img src="./icons/logo.svg" alt="foody logo">
<h2>Foody</h2>
</div>
<!-- SIDELINKS -->
<div class="sidelinks">
<a href="#index.html" class="side__link">home</a>
<a href="#about" class="side__link">about</a>
<a href="#service" class="side__link">services</a>
<a href="#items" class="side__link">items</a>
<a href="#contact" class="side__link">contact</a>
</div>
<!-- END SIDELINKS -->
<!-- CLOSE MENU -->
<div class="close__btn">
<i class="fas fa-arrow-left"></i>
</div>
<!-- END CLOSE MENU -->
</aside>
<!-- END SIDEBAR -->
<!-- HERO -->
<section class="hero">
<div class="section-set">
<article class="hero__text">
<h1>Enjoy Delicious Food <br>at Popular Prices</h1>
<h3>Get a variety of food full of tempting flavours and <br>
cheap prices for various groups.</h3>
<form id="form" class="form">
<input type="text" class="search-input" id="search" placeholder="Enter your location">
<button class="cta">
<i class="fas fa-search"></i>
</button>
</form>
</article>
</div>
</section>
<!-- END HERO -->
<div id="about"></div>
<main class="main">
<!-- EXPLORE -->
<section class="explore">
<div class="section-set">
<!-- EXPLORE INFO -->
<article class="explore__info">
<h2>Food is an Important Part<br>
Of Balanced Diet</h2>
<p>The groundwork of all happiness is health. It took more than a day to put it on. If you
keep good food in your fridge, you will eat good food. It takes five minutes to consume
500 calories. One must eat to live, not live to eat. Exercising should be about rewarding
the body with endorphins and strength.</p>
<button class="btn">Explore more stories</button>
</article>
<!-- END EXPLORE INFO -->
<!-- EXPLORE IMAGE -->
<article class="explore__img">
<img src="./images/noodle.png" alt="noodles">
</article>
<!-- END EXPLORE IMAGE -->
</div>
</section>
<!-- END EXPLORE -->
<!-- ITEMS -->
<section class="items" id="items">
<!-- SET CONTAINER -->
<div class="section-set">
<article class="sub-heading">
<h2 class="subtitle">All Items</h2>
<h4>It is a long established fact that a ready will be districted by<br>
the readable content of a page when looking.</h4>
</article>
<article class="items__wrapper">
<!-- single item -->
<article class="item">
<img src="./images/burger.png" alt="burger" class="item__img">
<div class="item__info">
<h4>The Worcestershire Burger</h4>
<div class="item__desc">
<button class="item__btn">ADD TO CART</button>
<h4>£20.00</h4>
</div>
</div>
</article>
<!-- end single item -->
<!-- single item -->
<article class="item">
<img src="./images/chicken-pizza.png" alt="chicken" class="item__img">
<div class="item__info">
<h4>Chicken Pizza</h4>
<div class="item__desc">
<button class="item__btn">ADD TO CART</button>
<h4>£15.00</h4>
</div>
</div>
</article>
<!-- end single item -->
<!-- single item -->
<article class="item">
<img src="./images/easy-chef.png" alt="salad" class="item__img">
<div class="item__info">
<h4>Easy Chef Salad</h4>
<div class="item__desc">
<button class="item__btn">ADD TO CART</button>
<h4>£12.00</h4>
</div>
</div>
</article>
<!-- end single item -->
<!-- END SET CONTAINER -->
</article>
<button class="btn">Load more items</button>
</div>
</section>
<!-- END ITEMS -->
<!-- SERVICES -->
<section class="services" id="service">
<!-- SET CONTAINER -->
<div class="section-set">
<article class="sub-heading">
<h4>Features</h4>
<h2 class="subtitle">Our Best Services</h2>
</article>
<article class="services__wrapper">
<!-- SINGLE SERVICE -->
<article class="service">
<div class="img-wrap">
<img src="./icons/forkknife.svg" alt="quality food">
</div>
<h3>Quality Food</h3>
<p>It is a long established fact that a
ready will be districted by the readable
content of a page when looking.</p>
</article>
<!-- END SINGLE SERVICE -->
<!-- SINGLE SERVICE -->
<article class="service">
<div class="img-wrap">
<img src="./icons/spaguetti (1).svg" alt="super taste">
</div>
<h3>Super Taste</h3>
<p>It is a long established fact that a
ready will be districted by the readable
content of a page when looking.</p>
</article>
<!-- END SINGLE SERVICE -->
<!-- SINGLE SERVICE -->
<article class="service">
<div class="img-wrap">
<img src="./icons/spaguetti (1).svg" alt="fast delivery">
</div>
<h3>Fast Delivery</h3>
<p>It is a long established fact that a
ready will be districted by the readable
content of a page when looking.</p>
</article>
<!-- END SINGLE SERVICE -->
<!-- SINGLE SERVICE -->
<article class="service">
<div class="img-wrap">
<img src="./icons/discount.svg" alt="discount system">
</div>
<h3>Discount System</h3>
<p>It is a long established fact that a
ready will be districted by the readable
content of a page when looking.</p>
</article>
<!-- END SINGLE SERVICE -->
<!-- SINGLE SERVICE -->
<article class="service">
<div class="img-wrap">
<img src="./icons/tray.svg" alt="restaurant">
</div>
<h3>60+ Restaurant</h3>
<p>It is a long established fact that a
ready will be districted by the readable
content of a page when looking.</p>
</article>
<!-- END SINGLE SERVICE -->
</article>
</div>
<!-- END SET CONTAINER -->
</section>
<!-- END SERVICES -->
<!-- POPULAR FOODS -->
<section class="popular">
<!-- SET CONTAINER -->
<div class="section-set">
<article class="sub-heading">
<h2 class="subtitle">Popular Foods</h2>
<h4>It is a long established fact that a ready will be districted by<br>
the readable content of a page when looking.</h4>
<article class="pizza-options">
<a href="#" class="pizza__option">Original</a>
<a href="#" class="pizza__option">Spicy</a>
<a href="#" class="pizza__option">Meat</a>
<a href="#" class="pizza__option">International</a>
</article>
</article>
<!-- PIZZAS -->
<article class="pizza__wrapper">
<!-- SINGLE PIZZA -->
<article class="pizza">
<img src="./images/shrimpolive.png" alt="shrimp">
<h3>Shrimp and Olive Pizza</h3>
<p>£18.00</p>
</article>
<!-- END SINGLE PIZZA -->
<!-- SINGLE PIZZA -->
<article class="pizza">
<img src="./images/cheese.png" alt="cheese">
<h3>Thin Cheese Pizza</h3>
<p>£15.00</p>
</article>
<!-- END SINGLE PIZZA -->
<!-- SINGLE PIZZA -->
<article class="pizza">
<img src="./images/seafood.png" alt="meat">
<h3>Meat Pizza</h3>
<p>£22.00</p>
</article>
<!-- END SINGLE PIZZA -->
<!-- SINGLE PIZZA -->
<article class="pizza">
<img src="./images/mushroom.png" alt="mushroom">
<h3>Mushroom Pizza</h3>
<p>£12.00</p>
</article>
<!-- END SINGLE PIZZA -->
</article>
<!-- END PIZZAS -->
<button class="btn">Load more pizza</button>
</div>
<!--END SET CONTAINER -->
</section>
<!-- END POPULAR FOODS -->
<!-- CLIENTS -->
<section class="clients">
<!-- SET CONTAINER -->
<!-- <div class="section-set"> -->
<!-- CAROUSEL -->
<div class="carousel-container">
<div class="carousel__slide">
<!-- slide -->
<article class="slide">
<div class="slide__wrap">
<h2>Happy Client Say</h2>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Doloribus, debitis
voluptatem vitae minus voluptatibus placeat tempore, recusandae quisquam id in
officiis adipisci asperiores fugit, commodi itaque alias velit? Minus, quisquam.</p>
</div>
<img src="./images/gyoza.png" alt="gyoza">
</article>
<!-- end slide -->
<!-- slide -->
<article class="slide">
<div class="slide__wrap">
<h2>Happy Client Say</h2>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Doloribus, debitis
voluptatem vitae minus voluptatibus placeat tempore, recusandae quisquam id in
officiis adipisci asperiores fugit, commodi itaque alias velit? Minus, quisquam.</p>
</div>
<img src="./images/noodle.png" alt="noodle">
</article>
<!-- end slide -->
<!-- slide -->
<article class="slide">
<div class="slide__wrap">
<h2>Happy Client Say</h2>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Doloribus, debitis
voluptatem vitae minus voluptatibus placeat tempore, recusandae quisquam id in
officiis adipisci asperiores fugit, commodi itaque alias velit? Minus, quisquam.</p>
</div>
<img src="./images/strawberry.png" alt="strawberry">
</article>
<!-- end slide -->
</div>
</div>
<!-- END CAROUSEL -->
<div class="client-btn-wrap">
<button id="prev">Prev</button>
<button id="next">Next</button>
</div>
<!-- </div> -->
<!-- END SET CONTAINER -->
</section>
<!-- END CLIENTS -->
<!-- BEAUTIFUL FOODS -->
<section class="foods">
<div class="food-wrapper">
<article class="food__info">
<article class="food__img">
<img src="./images/gyoza.png" alt="gyoza">
</article>
<article class="btn-wrap">
<h2>Get Our Beautiful Food <br> App Download</h2>
<div class="btn-contain">
<button class="app__store">
<i class="fab fa-apple"></i>
<p>IOS APP ON <br><span>App Store</span></p>
</button>
<button class="app__store">
<i class="fab fa-google-play"></i>
<p>ANDROID APP ON <br><span>Google play</span></p>
</button>
</div>
</article>
</article>
</div>
</section>
<!-- END BEAUTIFUL FOODS -->
<!-- SPONSORS -->
<section class="sponsors">
<div class="section-set">
<article class="sponsor__list">
<img src="./icons/signup.svg" alt="sign up">
<img src="./icons/envato.svg" alt="envato">
<img src="./icons/teamwork.svg" alt="teamwork">
<img src="./icons/deloitte.svg" alt="deloitte">
<img src="./icons/natural.svg" alt="natural ingredients">
</article>
</div>
</section>
<!-- END SPONSORS -->
<!-- SUBSCRIBE -->
<section class="subscribe" id="contact">
<!-- SET CONTAINER -->
<div class="section-set">
<h4>support</h4>
<h3>Subscribe Now & Get Company News</h3>
<form class="subscribe__form" action="https://formspree.io/f/xgeprjrg" method="POST">
<div class="form__control error">
<input type="text" class="sub__input" placeholder="Enter Your Email" name="_replyto">
<i class="far fa-envelope"></i>
<small>Error Message</small>
</div>
<button class="btn" type="submit">
<i class="far fa-paper-plane"></i>
Subscribe
</button>
</form>
</div>
<!-- END SET CONTAINER -->
</section>
<!-- END SUBSCRIBE -->
</main>
<!-- FOOTER -->
<footer class="footer">
<!-- SET CONTAINER -->
<div class="section-set">
<!-- CARD SECTION -->
<div class="card-wrapper">
<!-- SINGLE CARD -->
<article class="single-card">
<div class="logo">
<img src="./icons/logo.svg" alt="foody logo">
<h2>Foody</h2>
</div>
<p>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of
classical</p>
<article class="social">
<a href="#"><i class="fab fa-facebook-f"></i></a>
<a href="#" class="border-icon"><i class="fab fa-twitter"></i></a>
<a href="#"><i class="fab fa-google-plus-g"></i></a>
<a href="#"><i class="fab fa-linkedin-in"></i></a>
</article>
</article>
<!-- END SINGLE CARD -->
<!-- SINGLE CARD -->
<article class="single-card">
<h4>Information</h4>
<a href="#">about us</a>
<a href="#">more search</a>
<a href="#">event</a>
</article>
<!-- END SINGLE CARD -->
<!-- SINGLE CARD -->
<article class="single-card">
<h4>helpful links</h4>
<a href="#">security</a>
<a href="#">supports</a>
<a href="#">terms & conditions</a>
<a href="#">privacy</a>
</article>
<!-- END SINGLE CARD -->
<!-- SINGLE CARD -->
<article class="single-card">
<h4>our menu</h4>
<a href="#">launch</a>
<a href="#">dinner</a>
<a href="#">catering</a>
<a href="#">categories</a>
</article>
<!-- END SINGLE CARD -->
<!-- SINGLE CARD -->
<article class="single-card">
<h4>contact us</h4>
<a href="#">++12345678910</a>
<a href="#">foodyinc@gmail.com</a>
</article>
<!-- END SINGLE CARD -->
</div>
<!-- END CARD SECTION -->
</div>
<!-- END SET CONTAINER -->
<p class="created">2021 Foody Ltd. All Rights Reserved.</p>
</footer>
<!-- END FOOTER -->
<script src="app.js"></script>
</body>
</html>