-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1064 lines (1027 loc) · 55.4 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
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<!-- HTML Meta Tags -->
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>TheMorfi</title>
<meta name="description"
content="The Morfi is a restaurant franchise dedicated to offering the public a new experience with food. Come and discover healthy meals, unique recipes, products of the best quality, events, and much more" />
<meta name="keywords" content="THE, MORFI, FOOD, HEALTHY, BEST" />
<!-- Google / Search Engine Tags -->
<meta itemprop="name" content="The Morfi" />
<meta itemprop="description"
content="The Morfi is a restaurant franchise dedicated to offering the public a new experience with food. Come and discover healthy meals, unique recipes, products of the best quality, events, and much more" />
<meta itemprop="image" content="https://i.imgur.com/NRUXriX.jpg" />
<!-- Facebook Meta Tags -->
<meta property="og:url" content="https://enzoarguello512.github.io/morfi" />
<meta property="og:type" content="website" />
<meta property="og:title" content="The Morfi" />
<meta property="og:description"
content="The Morfi is a restaurant franchise dedicated to offering the public a new experience with food. Come and discover healthy meals, unique recipes, products of the best quality, events, and much more" />
<meta property="og:image" content="https://i.imgur.com/NRUXriX.jpg" />
<!-- Twitter Meta Tags -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="The Morfi" />
<meta name="twitter:description"
content="The Morfi is a restaurant franchise dedicated to offering the public a new experience with food. Come and discover healthy meals, unique recipes, products of the best quality, events, and much more" />
<meta name="twitter:image" content="https://i.imgur.com/NRUXriX.jpg" />
<!-- Main CSS -->
<link rel="stylesheet" href="assets/css/main.css" type="text/css" />
<!-- Google / Fonts -->
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&display=swap" rel="stylesheet" />
<!-- Tab Icon -->
<link rel="icon" href="img/logo/white_background/small_logo_icon/svg/small_logo_icon.svg" />
<!--Font Awesome Icons -->
<script src="https://kit.fontawesome.com/1131adf3a1.js" crossorigin="anonymous"></script>
<!--AOS-->
<link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet" />
<!--------------------->
</head>
<body>
<header>
<!--Start of nav-menu-container-->
<div class="container-xxl navbar-min-h fixed-top bg-white">
<nav class="navbar navbar-expand-lg navbar-light m-2">
<div class="h-40px text-center">
<a class="navbar-brand" href="/">
<img class="h-100 w-auto" src="img/logo/white_background/medium_logo_side/svg/medium_logo_side.svg"
alt="side-logo" />
</a>
</div>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarSupportedContent"
aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<!--nav-->
<ul class="navbar-nav align-items-center justify-content-around mx-auto col-lg-8">
<!--Home-->
<li class="nav-item">
<a class="nav-link active fs-5" href="/" aria-current="page">Home</a>
</li>
<!--About-->
<li class="nav-item dropdown text-center">
<a class="nav-link fs-5" href="#" id="navbarDropdownMenuLinkAbout" role="button" data-bs-toggle="dropdown"
aria-expanded="false">About</a>
<ul class="nav-color-list dropdown-menu text-center text-lg-start"
aria-labelledby="navbarDropdownMenuLinkAbout">
<li><a class="dropdown-item" href="views/about/about-us.html">About us</a></li>
<li><a class="dropdown-item" href="views/about/locations.html">Locations</a></li>
<li><a class="dropdown-item" href="views/about/our-products.html">Our products</a></li>
</ul>
</li>
<!--Shop-->
<li class="nav-item dropdown text-center">
<a class="nav-link fs-5" href="#" id="navbarDropdownMenuLinkShop" role="button" data-bs-toggle="dropdown"
aria-expanded="false">Shop</a>
<ul class="nav-color-list dropdown-menu text-center text-lg-start"
aria-labelledby="navbarDropdownMenuLinkDrop">
<li><a class="dropdown-item" href="views/shop/shop.html">Catalogue</a></li>
<li><a class="dropdown-item" href="views/shop/top-offers.html">Top offers</a></li>
</ul>
</li>
<!--Recipes-->
<li class="nav-item dropdown text-center">
<a class="nav-link fs-5" href="#" id="navbarDropdownMenuLinkRecipes" role="button"
data-bs-toggle="dropdown" aria-expanded="false">Recipes</a>
<ul class="nav-color-list dropdown-menu text-center text-lg-start"
aria-labelledby="navbarDropdownMenuLinkRecipes">
<li><a class="dropdown-item" href="views/recipes/classics.html">Classics</a></li>
<li><a class="dropdown-item" href="views/recipes/healthy-recipes.html">Healthy</a></li>
<li><a class="dropdown-item" href="views/recipes/wholemeal-recipes.html">Wholemeal</a></li>
<li><a class="dropdown-item" href="views/recipes/easy-recipes.html">Easy</a></li>
</ul>
</li>
<!--Help-->
<li class="nav-item dropdown text-center">
<a class="nav-link fs-5" href="#" id="navbarDropdownMenuLinkHelp" role="button" data-bs-toggle="dropdown"
aria-expanded="false">Help</a>
<ul class="nav-color-list dropdown-menu text-center text-lg-start"
aria-labelledby="navbarDropdownMenuLinkHelp">
<li><a class="dropdown-item" href="views/help/contact.html">Contact</a></li>
<li><a class="dropdown-item" href="views/help/faq/faq.html">FAQ</a></li>
</ul>
</li>
<!--Searchbar-->
<li class="nav-item">
<form>
<div class="input-group">
<button class="input-group-text nav-searchbar" id="search-icon" aria-label="searchbar icon">
<i class="fas fa-search"></i>
</button>
<input type="text" class="form-control nav-searchbar" placeholder="Search" aria-label="Search"
aria-describedby="search-icon" />
</div>
</form>
</li>
</ul>
<hr />
<!--account-nav-->
<ul class="navbar-nav align-items-center justify-content-evenly min-w-179px">
<li class="nav-item d-block d-lg-flex text-center btn-login-container m-1">
<a class="nav-link btn-login rounded text-nowrap px-4 py-3 px-lg-2 py-lg-2"
href="views/account/login.html">Log in</a>
</li>
<li class="nav-item text-center btn-sign-up-container m-1">
<a class="nav-link btn-sign-up rounded text-nowrap px-4 py-3 px-lg-2 py-lg-2"
href="views/account/register.html">Sign up</a>
</li>
</ul>
</div>
</nav>
</div>
<!--End of nav-menu-container-->
</header>
<main class="mt-11">
<!--Start of news-container-->
<!--titles-->
<section class="container-xxl">
<div class="text-center my-2">
<a class="d-inline" href="#">
<h1 class="h1-title h-underline d-inline">News</h1>
</a>
</div>
</section>
<!--rows and items start-->
<section class="container-xxl mw-1000px">
<div class="d-flex align-items-center justify-content-center flex-column min-h-540px">
<!--main row with carousel start-->
<div class="row min-h-312px">
<div class="col-md-12 mb-3 mb-lg-auto">
<div id="news-carousel" class="carousel slide" data-bs-ride="carousel">
<div class="carousel-indicators d-none d-md-flex mb-0 mb-lg-1 m-reset-rl">
<button type="button" data-bs-target="#news-carousel" data-bs-slide-to="0" class="active"
aria-current="true" aria-label="Slide 1"></button>
<button type="button" data-bs-target="#news-carousel" data-bs-slide-to="1"
aria-label="Slide 2"></button>
<button type="button" data-bs-target="#news-carousel" data-bs-slide-to="2"
aria-label="Slide 3"></button>
</div>
<div class="carousel-inner rounded">
<!----------------------item-1----------------------->
<div class="carousel-item active">
<a href="#">
<figure class="m-0">
<img src="img/home/news/big-image/family-op.webp"
class="img-fluid h-opacity-1 min-h-312px obfit-cover" alt="family-meeting" />
</figure>
<div class="carousel-caption bg-dark p-reset-rbl py-0 py-md-2 py-lg-3">
<h5 class="text-truncate mx-3 mx-md-5 text-green-2 fw-bold">Come with your family!</h5>
<p class="ff-lato-4 text-truncate mx-3 mx-md-5 mb-0 mb-md-3">
Enjoy an excellent variety and quality of products together with your loved ones
</p>
</div>
</a>
</div>
<!----------------------item-1----------------------->
<!----------------------item-2----------------------->
<div class="carousel-item">
<a href="#">
<figure class="m-0">
<img src="img/home/news/big-image/new-location-op.webp"
class="img-fluid h-opacity-1 min-h-312px obfit-cover" alt="new-location" />
</figure>
<div class="carousel-caption bg-dark p-reset-rbl py-0 py-md-2 py-lg-3">
<h5 class="text-truncate mx-3 mx-md-5 text-green-2 fw-bold">New restaurant in georgia</h5>
<p class="ff-lato-4 text-truncate mx-3 mx-md-5 mb-0 mb-md-3">
As always, we make sure that our clients feel comfortable in each of our restaurants and that
they can have a good time, that is why we are expanding to Georgia and its towns, maintaining
the classic appearance and incorporating new local recipes
</p>
</div>
</a>
</div>
<!----------------------item-2----------------------->
<!----------------------item-3----------------------->
<div class="carousel-item">
<a href="#">
<figure class="m-0">
<img src="img/home/news/big-image/learn-op.webp"
class="img-fluid h-opacity-1 min-h-312px obfit-cover" alt="new-miniserie" />
</figure>
<div class="carousel-caption bg-dark p-reset-rbl py-0 py-md-2 py-lg-3">
<h5 class="text-truncate mx-3 mx-md-5 text-green-2 fw-bold">Learn to cook - tv</h5>
<p class="ff-lato-4 text-truncate mx-3 mx-md-5 mb-0 mb-md-3">
Our new miniseries, where we teach you how to prepare healthy and delicious food following a
step by step with our informative videos
</p>
</div>
</a>
</div>
<!----------------------item-3----------------------->
</div>
<!--controls-->
<button class="carousel-control-prev opacity-100" type="button" data-bs-target="#news-carousel"
data-bs-slide="prev">
<span class="rounded px-2 fs-4 bg-darker-5" aria-hidden="true">
<i class="fas fa-long-arrow-alt-left"></i>
</span>
<span class="visually-hidden">Previous</span>
</button>
<button class="carousel-control-next opacity-100" type="button" data-bs-target="#news-carousel"
data-bs-slide="next">
<span class="rounded px-2 fs-4 bg-darker-5" aria-hidden="true">
<i class="fas fa-long-arrow-alt-right"></i>
</span>
<span class="visually-hidden">Next</span>
</button>
<!--controls-->
</div>
</div>
</div>
<!--main row with carousel end-->
<!--secondary row start-->
<div class="row min-h-208px">
<!---------col-1 start----------->
<div class="col-12 col-sm-7 my-2 mx-auto min-h-208px">
<a class="d-block d-lg-none" href="#">
<h2 class="text-center h1-title">News</h2>
</a>
<a class="text-dark min-h-208px" href="#" rel="noreferrer">
<div class="position-relative">
<figure class="m-0">
<img class="img-fluid rounded-3 h-opacity-1 h-100 min-h-208px obfit-cover"
src="img/home/news/medium-image/chicken-op.webp" alt="grilled-chicken" />
</figure>
<div class="bg-dark text-white text-center rounded-bottom py-1 position-absolute p-reset-rbl">
<h5 class="text-truncate mx-5 text-green-2 fw-bold">Grilled chicken breast</h5>
<p class="m-0 ff-lato-4 text-truncate mx-4">
Grilled chicken and fresh vegetable salad tomatoes cucumbers and lettuce leaves
</p>
</div>
</div>
</a>
</div>
<div class="col-12 col-sm-7 my-2 mx-auto d-block d-md-none min-h-208px">
<a class="text-dark min-h-208px" href="#" rel="noreferrer">
<div class="position-relative">
<figure class="m-0">
<img class="img-fluid rounded-3 h-opacity-1 h-100 min-h-208px obfit-cover"
src="img/home/news/medium-image/breakfast-op.webp" alt="breakfast" />
</figure>
<div class="bg-dark text-white text-center rounded-bottom py-1 position-absolute p-reset-rbl">
<h5 class="text-truncate mx-5 text-green-2 fw-bold">White breakfast</h5>
<p class="m-0 ff-lato-4 text-truncate mx-4">Try it out</p>
</div>
</div>
</a>
</div>
<!---------col-1 end----------->
<!---------col-2 start---------->
<div class="col-12 col-lg-5 p-auto ps-lg-0 my-3 my-lg-2 mx-auto min-h-208px">
<a class="d-block d-lg-none" href="views/recipes/healthy-recipes.html">
<h2 class="text-center h1-title">News recipes</h2>
</a>
<div class="row">
<!----------------------item-1----------------------->
<div class="col-auto col-md-5 col-lg-auto mb-2 mx-auto">
<a class="min-h-208px" href="#" rel="noreferrer">
<div class="position-relative text-center">
<figure class="m-0">
<img class="img-fluid rounded-3 h-opacity-1 h-100 min-h-208px obfit-cover"
src="img/home/news/small-image/hasina.webp" alt="pheasant-harissa" />
</figure>
<div class="bg-dark text-white text-center rounded-bottom py-1 position-absolute p-reset-rbl">
<h5 class="text-truncate mx-5 text-green-2 fw-bold">Pheasant with harissa, chicory [&] orange</h5>
<p class="m-0 ff-lato-4 text-truncate mx-4">
This dish has a real North African feel to it – the smell of caramelising harissa paste
cooking over the flames of a barbecue sends you off to Marrakesh or Fez, but you are as likely
to find this in the markets and streets of Cadiz, Cordoba and Granada.
</p>
</div>
</div>
</a>
</div>
<!----------------------item-1----------------------->
<!----------------------item-2----------------------->
<div class="col-auto d-block d-md-none mb-2 mx-auto min-h-208px">
<a class="min-h-208px" href="#" rel="noreferrer">
<div class="position-relative text-center">
<figure class="m-0">
<img class="img-fluid rounded-3 h-opacity-1 h-100 min-h-208px obfit-cover"
src="img/home/news/small-image/bowl.webp" alt="bowl" />
</figure>
<div class="bg-dark text-white text-center rounded-bottom py-1 position-absolute p-reset-rbl">
<h5 class="text-truncate mx-5 text-green-2 fw-bold">Special Bowl</h5>
<p class="m-0 ff-lato-4 text-truncate mx-4">The traditional dish!</p>
</div>
</div>
</a>
</div>
<!----------------------item-2----------------------->
<!----------------------item-3----------------------->
<div class="col-md-5 mx-auto d-none d-md-block mb-2 d-lg-none min-h-208px">
<a class="min-h-208px" href="#" rel="noreferrer">
<div class="position-relative text-center">
<figure class="m-0">
<img class="img-fluid rounded-3 h-opacity-1 h-100 min-h-208px obfit-cover"
src="img/home/news/small-image/bowl.webp" alt="bowl" />
</figure>
<div class="bg-dark text-white text-center rounded-bottom py-1 position-absolute p-reset-rbl">
<h5 class="text-truncate mx-5 text-green-2 fw-bold">Special Bowl</h5>
<p class="m-0 ff-lato-4 text-truncate mx-4">The traditional dish!</p>
</div>
</div>
</a>
</div>
<!----------------------item-3----------------------->
</div>
</div>
<!---------col-2 end----------->
</div>
<!--secondary row end-->
<!--rows and items end-->
</div>
</section>
<!--End of news-container-->
<!--Start of top-offers-container-->
<section class="container-xxl min-h-362px">
<div class="m-2">
<a href="views/shop/top-offers.html">
<h2 class="h1-title text-center text-xl-start d-inline h-underline">Top offers</h2>
</a>
</div>
<div id="top-offers-carousel" class="carousel slide" data-bs-ride="carousel">
<div class="carousel-inner toffer-data-container">
<div class="carousel-item active" data-bs-interval="8000">
<div class="d-flex align-items-center justify-content-center">
<!------------------------------card.1------------------------------>
<div class="card my-2 my-md-2 my-xl-3 mx-5 mx-lg-1 mx-xl-3 col-lg-8 col-xl-5">
<div class="row g-0 min-h-282px">
<div class="col-md-5 overflow-hidden rounded">
<a href="views/shop/top-offers.html">
<figure class="d-inline m-0">
<img class="img-fluid img-rez img-normalize img-ts-1" src="img/home/top-offers/lasag-op.webp"
alt="Lasagna" />
</figure>
</a>
</div>
<div class="col-md-7">
<div class="position-relative">
<div class="card-body">
<div class="position-absolute w-60px">
<div class="position-relative d-none d-sm-block">
<figure class="m-0">
<img class="img-fluid" src="img/shop/top-offers/helpers/tagv3.svg" alt="discount" />
</figure>
<div class="position-absolute top-50 start-50 translate-middle">
<div class="text-white fw-bold">-25%</div>
</div>
</div>
</div>
<div class="
card-title
text-center text-decoration-underline
toffer-item-title
text-truncate
mx-0 mx-md-5
">
<a class="text-dark mx-0 mx-md-4" href="views/shop/top-offers.html">Lasagna</a>
</div>
<div class="toffer-item-price text-center">
$44.99<span class="d-none d-sm-inline toffer-item-price-normal">$60.00</span>
</div>
<p class="card-text text-truncate-5">
Italian dish made of stacked layers of thin flat pasta alternating with fillings such as
ragu (ground meats and tomato sauce) and other vegetables, cheese (which may include ricotta
and parmesan), and seasonings and spices such as garlic, oregano and basil.
</p>
<p class="card-text"><small class="text-muted">Last updated 2 mins ago</small></p>
</div>
</div>
</div>
</div>
</div>
<!------------------------------card.1------------------------------>
<!------------------------------card.2------------------------------>
<div class="card my-2 my-md-2 my-xl-3 mx-lg-1 mx-xl-3 col-lg-8 col-xl-4 d-none d-xl-block col-xl-5">
<div class="row g-0 min-h-282px">
<div class="col-md-5 overflow-hidden rounded">
<a href="views/shop/top-offers.html">
<figure class="d-inline m-0">
<img class="img-fluid img-rez img-normalize img-ts-1" src="img/home/top-offers/pizza-op.webp"
alt="Neapolitan-Pizza" />
</figure>
</a>
</div>
<div class="col-md-7">
<div class="position-relative">
<div class="card-body">
<div class="position-absolute w-60px">
<div class="position-relative d-none d-sm-block">
<figure class="m-0">
<img class="img-fluid" src="img/shop/top-offers/helpers/tagv3.svg" alt="discount" />
</figure>
<div class="position-absolute top-50 start-50 translate-middle">
<div class="text-white fw-bold">-25%</div>
</div>
</div>
</div>
<div class="
card-title
text-center text-decoration-underline
toffer-item-title
text-truncate
mx-0 mx-md-5
">
<a class="text-dark mx-0 mx-md-4" href="views/shop/top-offers.html">Neapolitan Pizza</a>
</div>
<div class="toffer-item-price text-center">
$29.99<span class="d-none d-sm-inline toffer-item-price-normal">$40.00</span>
</div>
<p class="card-text text-truncate-5">
Dish of Italian origin consisting of a flattened disk of bread dough topped with some
combination of olive oil, oregano, tomato, olives, mozzarella or other cheese, and many
other ingredients, baked quickly—usually, in a commercial setting, using a wood-fired oven
heated to a very high temperature—and served hot.
</p>
<p class="card-text"><small class="text-muted">Last updated 3 mins ago</small></p>
</div>
</div>
</div>
</div>
</div>
<!------------------------------card.2------------------------------>
</div>
</div>
<div class="carousel-item" data-bs-interval="8000">
<div class="d-flex align-items-center justify-content-center">
<!------------------------------card.3------------------------------>
<div class="card my-2 my-md-2 my-xl-3 mx-5 mx-lg-1 mx-xl-3 col-lg-8 col-xl-5">
<div class="row g-0 min-h-282px">
<div class="col-md-5 overflow-hidden rounded">
<a href="views/shop/top-offers.html">
<figure class="d-inline m-0">
<img class="img-fluid img-rez img-normalize img-ts-1" src="img/home/top-offers/sapag-op.webp"
alt="Spaghetti-bolognese" />
</figure>
</a>
</div>
<div class="col-md-7">
<div class="position-relative">
<div class="card-body">
<div class="position-absolute w-60px">
<div class="position-relative d-none d-sm-block">
<figure class="m-0">
<img class="img-fluid" src="img/shop/top-offers/helpers/tagv3.svg" alt="discount" />
</figure>
<div class="position-absolute top-50 start-50 translate-middle">
<div class="text-white fw-bold">-29%</div>
</div>
</div>
</div>
<div class="
card-title
text-center text-decoration-underline
toffer-item-title
text-truncate
mx-0 mx-md-5
">
<a class="text-dark mx-0 mx-md-4" href="views/shop/top-offers.html">Spaghetti bolognese</a>
</div>
<div class="toffer-item-price text-center">
$49.99<span class="d-none d-sm-inline toffer-item-price-normal">$70.00</span>
</div>
<p class="card-text text-truncate-5">
Spaghetti bolognese consists of spaghetti (long strings of pasta) with an Italian ragù (meat
sauce) made with minced beef, bacon and tomatoes, served with Parmesan cheese. Spaghetti
bolognese is one of the most popular pasta dishes eaten outside of Italy.
</p>
<p class="card-text"><small class="text-muted">Last updated 1 mins ago</small></p>
</div>
</div>
</div>
</div>
</div>
<!------------------------------card.3------------------------------>
<!------------------------------card.4------------------------------>
<div class="card my-2 my-md-2 my-xl-3 mx-lg-1 mx-xl-3 col-lg-8 col-xl-4 d-none d-xl-block col-xl-5">
<div class="row g-0 min-h-282px">
<div class="col-md-5 overflow-hidden rounded">
<a href="views/shop/top-offers.html">
<figure class="d-inline m-0">
<img class="img-fluid img-rez img-normalize img-ts-1" src="img/home/top-offers/gazpa-op.webp"
alt="Gazpacho" />
</figure>
</a>
</div>
<div class="col-md-7">
<div class="position-relative">
<div class="card-body">
<div class="position-absolute w-60px">
<div class="position-relative d-none d-sm-block">
<figure class="m-0">
<img class="img-fluid" src="img/shop/top-offers/helpers/tagv3.svg" alt="discount" />
</figure>
<div class="position-absolute top-50 start-50 translate-middle">
<div class="text-white fw-bold">-50%</div>
</div>
</div>
</div>
<div class="
card-title
text-center text-decoration-underline
toffer-item-title
text-truncate
mx-0 mx-md-5
">
<a class="text-dark mx-0 mx-md-4" href="views/shop/top-offers.html">Gazpacho</a>
</div>
<div class="toffer-item-price text-center">
$14.99<span class="d-none d-sm-inline toffer-item-price-normal">$30.00</span>
</div>
<p class="card-text text-truncate-5">
Gazpacho is a popular Spanish soup, made with fresh summer ingredients: ripe tomatoes
bursting with flavour, red pepper, garlic and cucumber. Oil and vinegar finish it off. The
soup is raw and served cold.
</p>
<p class="card-text"><small class="text-muted">Last updated 8 mins ago</small></p>
</div>
</div>
</div>
</div>
</div>
<!------------------------------card.4------------------------------>
</div>
</div>
<div class="carousel-item" data-bs-interval="8000">
<div class="d-flex align-items-center justify-content-center">
<!------------------------------card.5------------------------------>
<div class="card my-2 my-md-2 my-xl-3 mx-5 mx-lg-1 mx-xl-3 col-lg-8 col-xl-5">
<div class="row g-0 min-h-282px">
<div class="col-md-5 overflow-hidden rounded">
<a href="views/shop/top-offers.html">
<figure class="d-inline m-0">
<img class="img-fluid img-rez img-normalize img-ts-1" src="img/home/top-offers/frita-op.webp"
alt="Frittata" />
</figure>
</a>
</div>
<div class="col-md-7">
<div class="position-relative">
<div class="card-body">
<div class="position-absolute w-60px">
<div class="position-relative d-none d-sm-block">
<figure class="m-0">
<img class="img-fluid" src="img/shop/top-offers/helpers/tagv3.svg" alt="discount" />
</figure>
<div class="position-absolute top-50 start-50 translate-middle">
<div class="text-white fw-bold">-12%</div>
</div>
</div>
</div>
<div class="
card-title
text-center text-decoration-underline
toffer-item-title
text-truncate
mx-0 mx-md-5
">
<a class="text-dark mx-0 mx-md-4" href="views/shop/top-offers.html">Frittata</a>
</div>
<div class="toffer-item-price text-center">
$52.99<span class="d-none d-sm-inline toffer-item-price-normal">$60.00</span>
</div>
<p class="card-text text-truncate-5">
Frittata is an egg-based Italian dish similar to an omelette or crustless quiche or
scrambled eggs, enriched with additional ingredients such as meats, cheeses or vegetables.
The word frittata is Italian and roughly translates to "fried."
</p>
<p class="card-text"><small class="text-muted">Last updated 4 mins ago</small></p>
</div>
</div>
</div>
</div>
</div>
<!------------------------------card.5------------------------------>
<!------------------------------card.6------------------------------>
<div class="card my-2 my-md-2 my-xl-3 mx-lg-1 mx-xl-3 col-lg-8 col-xl-4 d-none d-xl-block col-xl-5">
<div class="row g-0 min-h-282px">
<div class="col-md-5 overflow-hidden rounded">
<a href="views/shop/top-offers.html">
<figure class="d-inline m-0">
<img class="img-fluid img-rez img-normalize img-ts-1" src="img/home/top-offers/cheese.webp"
alt="Cheese-Stuffed-Jalapenos" />
</figure>
</a>
</div>
<div class="col-md-7">
<div class="position-relative">
<div class="card-body">
<div class="position-absolute w-60px">
<div class="position-relative d-none d-sm-block">
<figure class="m-0">
<img class="img-fluid" src="img/shop/top-offers/helpers/tagv3.svg" alt="discount" />
</figure>
<div class="position-absolute top-50 start-50 translate-middle">
<div class="text-white fw-bold">-38%</div>
</div>
</div>
</div>
<div class="
card-title
text-center text-decoration-underline
toffer-item-title
text-truncate
mx-0 mx-md-5
">
<a class="text-dark mx-0 mx-md-4" href="views/shop/top-offers.html">Cheese Stuffed
Jalapenos</a>
</div>
<div class="toffer-item-price text-center">
$49.99<span class="d-none d-sm-inline toffer-item-price-normal">$80.00</span>
</div>
<p class="card-text text-truncate-5">
These stuffed with a fresh, herbed cream cheese mixture and topped with just enough cheddar
cheese to turn golden.<br />
They are beyond delicious, and they’re not greasy at all.
</p>
<p class="card-text"><small class="text-muted">Last updated 6 mins ago</small></p>
</div>
</div>
</div>
</div>
</div>
<!------------------------------card.6------------------------------>
</div>
</div>
</div>
<button class="carousel-control-prev w-7" type="button" data-bs-target="#top-offers-carousel"
data-bs-slide="prev">
<i class="fas fa-caret-left fa-5x px-sm-1 px-lg-0 ms-3 mx-md-2 mx-xl-3 text-white" aria-hidden="true" role="button"></i>
<span class="visually-hidden">Previous</span>
</button>
<button class="carousel-control-next w-7" type="button" data-bs-target="#top-offers-carousel"
data-bs-slide="next">
<i class="fas fa-caret-right fa-5x px-sm-1 px-lg-0 me-3 mx-md-2 mx-xl-3 text-white" aria-hidden="true" role="button"></i>
<span class="visually-hidden">Next</span>
</button>
</div>
</section>
<!--End of top-offers-container-->
<!--Start of newsletter-container-->
<section id="newsletter"
class="newsletter__data container mw-800px d-flex align-items-center rounded p-2 mx-auto my-5 bg-light">
<div class="row m-auto w-100">
<div class="col-12 col-lg-7 my-auto mx-auto mx-lg-0">
<h5 class="m-2 text-center fs-4">Subscribe to our newsletter</h5>
<p class="my-2 text-center">
Stay informed with the latest in our recipes, offers, events and much more by subscribing to our weekly
newsletter
</p>
<p class="m-0"><small class="text-center">You can unsubscribe at any time</small></p>
<hr class="d-block d-lg-none" />
</div>
<div class="col-12 col-lg-5 d-flex">
<div class="mx-auto align-self-center">
<label class="m-2 text-center fs-5" for="newsletter-input">Enter your email below</label>
<input type="email" id="newsletter-input" name="newsletter-input" placeholder="email@domain.com" />
<input class="btn btn-dark shadow" type="button" name="newsletter-btn" id="newsletter-btn"
value="Suscribe" />
</div>
</div>
</div>
</section>
<!--End of newsletter-container-->
<!--Start of customer-testimonies-container-->
<section class="container-xxl mw-1200px my-5 p-4">
<div class="row align-items-start justify-content-evenly p-0 p-md-3">
<!--info box start-->
<div class="col-7 d-none d-lg-block p-4">
<h5 class="text-dark mb-4 ff-lato-4 fs-1">How we do our service</h5>
<p class="fs-5 mb-4">
We guarantee that each client receives the product they pay for and we are constantly dedicated to knowing
what our clients demand and how we can make them happy, as well as being in the current trends.
</p>
<p class="fs-5 mb-4 ff-lato-4">
We offer the best quality products at the lowest price, gourmet recipes, top quality ingredients, and
thanks to all this we can create unique dishes.
</p>
<h5 class="ff-lato-4 fs-3">Curious about how we work?</h5>
<p class="fs-5">
Visit <a href="views/about/our-products.html">our products</a> to find out how we manufacture them and all
the measures we follow to provide a good quality product
</p>
</div>
<!--info box end-->
<!--customer review start-->
<div class="col-12 col-md-8 col-lg-4 customer-a-review">
<div data-aos="fade-left">
<h5 class="text-center text-dark mt-3 ff-lato-4 fs-3">What our clients say about us</h5>
<div id="testimonies-carousel" class="carousel slide" data-bs-ride="carousel">
<div class="carousel-inner">
<!--review 1-->
<div class="carousel-item active pt-6 cb-custom-home" data-bs-interval="11000">
<div class="position-relative">
<div class="position-absolute top-0 start-50 translate-middle">
<figure class="m-0">
<img class="d-block m-auto rounded border border-dark h-100px mw-100px"
src="img/home/customers-testimonies/woman.webp" alt="account-avatar-1" />
</figure>
</div>
<div class="rounded-3 border border-3 bg-primary">
<h5 class="text-center mt-6 mb-4 text-white text-truncate mx-2 mx-sm-5">Evangelia Asel</h5>
<div class="bg-dark text-center text-white">
<i class="fas fa-star"></i><i class="fas fa-star"></i><i class="fas fa-star"></i><i
class="fas fa-star"></i><i class="fas fa-star-half-alt"></i>
</div>
<div class="text-center py-4 px-2 px-sm-3 bg-white">
<div class="ff-lato-4 text-truncate-5 min-h-120px">
"Excellent restaurant cooking of good quality ingredients. Lovely subtle flavours with well
put together meals. Not a cheap restaurant but excellent value for the quality of cooking.
Look to spend about 25 Euros per person for 3 courses but well worth it"
</div>
</div>
</div>
</div>
</div>
<!--review 1-->
<!--review 2-->
<div class="carousel-item pt-6 cb-custom-home" data-bs-interval="11000">
<div class="position-relative">
<div class="position-absolute top-0 start-50 translate-middle">
<figure class="m-0">
<img class="d-block m-auto rounded border border-dark h-100px mw-100px"
src="img/home/customers-testimonies/man.webp" alt="account-avatar-2" />
</figure>
</div>
<div class="rounded-3 border border-3 bg-primary">
<h5 class="text-center mt-6 mb-4 text-white text-truncate mx-2 mx-sm-5">Giovanni Aston</h5>
<div class="bg-dark text-center text-white">
<i class="fas fa-star"></i><i class="fas fa-star"></i><i class="fas fa-star"></i><i
class="fas fa-star-half-alt"></i><i class="far fa-star"></i>
</div>
<div class="text-center py-4 px-2 px-sm-3 bg-white">
<div class="ff-lato-4 text-truncate-5 min-h-120px">
"We ate here over Christmas 2013 and struggled to get in as it was very busy. It was well
worth the wait however. The food was excellent and the ambiance of the restaurant was really
good as well. We will definitely eat here again when we go back to Miami in May"
</div>
</div>
</div>
</div>
</div>
<!--review 2-->
<!--review 3-->
<div class="carousel-item pt-6 cb-custom-home" data-bs-interval="11000">
<div class="position-relative">
<div class="position-absolute top-0 start-50 translate-middle">
<figure class="m-0">
<img class="d-block m-auto rounded border border-dark h-100px mw-100px"
src="img/home/customers-testimonies/woman2.webp" alt="account-avatar-3" />
</figure>
</div>
<div class="rounded-3 border border-3 bg-primary">
<h5 class="text-center mt-6 mb-4 text-white text-truncate mx-2 mx-sm-5">Teressa Townsley</h5>
<div class="bg-dark text-center text-white">
<i class="fas fa-star"></i><i class="fas fa-star"></i><i class="fas fa-star"></i><i
class="fas fa-star"></i><i class="far fa-star"></i>
</div>
<div class="text-center py-4 px-2 px-sm-3 bg-white">
<div class="ff-lato-4 text-truncate-5 min-h-120px">
"We ate twice at this restaurant and the service was attentive, the food was delicious and
the prices reasonable. Booking necessary. Will definitely be returning when we holiday next
year"
</div>
</div>
</div>
</div>
</div>
<!--review 3-->
<!--review 4-->
<div class="carousel-item pt-6 cb-custom-home" data-bs-interval="11000">
<div class="position-relative">
<div class="position-absolute top-0 start-50 translate-middle">
<figure class="m-0">
<img class="d-block m-auto rounded border border-dark h-100px mw-100px"
src="img/home/customers-testimonies/alpine.webp" alt="account-avatar-4" />
</figure>
</div>
<div class="rounded-3 border border-3 bg-primary">
<h5 class="text-center mt-6 mb-4 text-white text-truncate mx-2 mx-sm-5">Efren Abrashkin</h5>
<div class="bg-dark text-center text-white">
<i class="fas fa-star"></i><i class="fas fa-star"></i><i class="fas fa-star"></i><i
class="fas fa-star-half-alt"></i><i class="far fa-star"></i>
</div>
<div class="text-center py-4 px-2 px-sm-3 bg-white">
<div class="ff-lato-4 text-truncate-5 min-h-120px">
"Thankfully we have learned to book ahead. Imaginative menu with choices to suit all
palates. Presentation faultless, and perfect service to match. Consistently good, we now
regard this as a favourite, and visit, as often as possible whenever in this area."
</div>
</div>
</div>
</div>
</div>
<!--review 4-->
<!--review 5-->
<div class="carousel-item pt-6 cb-custom-home" data-bs-interval="11000">
<div class="position-relative">
<div class="position-absolute top-0 start-50 translate-middle">
<figure class="m-0">
<img class="d-block m-auto rounded border border-dark h-100px mw-100px"
src="img/home/customers-testimonies/avatar.webp" alt="account-avatar-5" />
</figure>
</div>
<div class="rounded-3 border border-3 bg-primary">
<h5 class="text-center mt-6 mb-4 text-white text-truncate mx-2 mx-sm-5">Fredi Bagwell</h5>
<div class="bg-dark text-center text-white">
<i class="fas fa-star"></i><i class="fas fa-star"></i><i class="fas fa-star"></i><i
class="fas fa-star"></i><i class="fas fa-star"></i>
</div>
<div class="text-center py-4 px-2 px-sm-3 bg-white">
<div class="ff-lato-4 text-truncate-5 min-h-120px">
"Probably due to the fact that we popped in one evening (without reservation) before Easter
week, we were lucky enough to secure the only remaining table for four. I was surprised at
how small and cosy this restaurant is! I was expecting a much larger establishment. However,
it is stylish and very nicely presented. A definite cut above. It was…"
</div>
</div>
</div>
</div>
</div>
<!--review 5-->
</div>
<!--controls-->
<button class="carousel-control-prev" type="button" data-bs-target="#testimonies-carousel"
data-bs-slide="prev">
<i class="far fa-arrow-alt-circle-left fa-2x" aria-hidden="true"></i>
<span class="visually-hidden">Previous</span>
</button>
<button class="carousel-control-next" type="button" data-bs-target="#testimonies-carousel"
data-bs-slide="next">
<i class="far fa-arrow-alt-circle-right fa-2x" aria-hidden="true"></i>
<span class="visually-hidden">Next</span>
</button>
<!--controls-->
</div>
</div>
</div>
<!--customer review end-->
</div>
</section>
<!--End of customer-testimonies-container-->
<!--pop-up start-->
<section class="container-xxl ff-lato-4">
<div class="modal" tabindex="-1" id="myModal" aria-labelledby="myModal" aria-describedby="proyect-info"
aria-hidden="true">
<div class="modal-dialog modal-dialog-centered modal-dialog-scrollable modal-lg">
<div class="modal-content border-0 bg-white">
<!--top-->
<div class="modal-header position-relative">
<figure class="figure text-center w-100">
<img class="home-h-100px" src="img/logo/white_background/full_logo/svg/full_logo.svg"
alt="the-morfi-logo" />
</figure>
<button type="button" class="btn btn-white position-absolute top-50 end-0 translate-middle-y mx-3"
data-bs-dismiss="modal" aria-label="Close">
<i class="fas fa-times fa-fw fa-lg"></i>
</button>
</div>
<!--top-->
<!--mid-->
<div class="modal-body p-3 p-md-4 p-lg-5">
<p class="text-break">
<strong>Project for educational purposes only, everything seen on the page is fictitious and the owners
of
the content have all rights.</strong><br />
To learn more about the project you can visit the page on gitgub:<br />
<a href="https://github.com/enzoArguello512/morfi" target="_blank"
rel="noopener">https://github.com/enzoarguello512/morfi</a>
</p>
<p class="text-break">
There you will find all the related information along with the credits to most of the owners of the
material used on this page (at least the ones I remember).
</p>
</div>
<!--mid-->
</div>
</div>
</div>
</section>
<!--pop-up end-->
</main>
<footer>
<!--footer-container-fluid-start-->
<div class="container-fluid bg-yellow-1">
<div class="container-xxl my-0 py-1 text-center">
<a
class="text-dark ff-lato-7 text-decoration-underline"
href="https://morfi-react.vercel.app/"
>
Check the react version of this site
</a>
🚀
</div>
</div>
<!--footer-container-fluid-end-->
<!--footer-container-fluid-start-->
<div class="container-fluid bg-darker-2">
<!--footer-container-xxl-start-->
<div class="container-xxl my-0">
<!--footer-top-left-start-->
<div class="p-3">
<div class="text-center">
<div class="h-100px mb-2 mx-auto">
<img class="w-100 h-100px" src="img/logo/white_background/full_logo/svg/full_logo.svg" alt="logo-image" />
</div>
<p class="mb-0 pt-1 ff-lato-4 fw-bold">© 2021 Morfi. All Rights Reserved.</p>
</div>
</div>
<!--footer-top-left-end-->
</div>
<!--footer-container-xxl-end-->
</div>
<!--footer-container-fluid-end-->
<!--footer-container-fluid-start-->
<div class="container-fluid bg-dark">
<!--footer-container-xxl-start-->
<div class="container-xxl my-0 py-3">
<!--footer-bottom-start-->
<ul class="list-unstyled m-2 pt-3 m-lg-0 d-flex align-items-center justify-content-center">
<li class="p-2">
<a class="p-2 bg-white text-dark rounded-circle" href="https://www.facebook.com/"
aria-label="facebook icon">
<i class="fab fa-facebook-f fa-fw fs-6"></i>
</a>
</li>
<li class="p-2">
<a class="p-2 bg-white text-dark rounded-circle" href="https://twitter.com/" aria-label="twitter icon">
<i class="fab fa-twitter fa-fw fs-6"></i>
</a>
</li>
<li class="p-2">
<a class="p-2 bg-white text-dark rounded-circle" href="https://www.youtube.com/" aria-label="youtube icon">
<i class="fab fa-youtube fa-fw fs-6"></i>
</a>
</li>
<li class="p-2">
<a class="p-2 bg-white text-dark rounded-circle" href="https://www.instagram.com/"
aria-label="instagram icon">
<i class="fab fa-instagram fa-fw fs-6"></i>
</a>