-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLe-Gourmand.html
123 lines (123 loc) · 5.28 KB
/
Le-Gourmand.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="dist/css/main.css">
<script src="https://kit.fontawesome.com/1ce7f964f6.js" crossorigin="anonymous"></script>
<title>Gourmand</title>
</head>
<body class="slidemein">
<header>
<a href="index.html"><i class="fas fa-arrow-left fa-lg"></i></a>
<img src="images/ohmyfood@2x.svg" alt="logo" class="logo">
</header>
<img class="center-image" src="images/placeholder4.webp" alt="plate of food">
<main class="food-menu">
<h1>Le Gourmand</h1>
<div id="restaurants-container">
<section class="entrees">
<h2 class="groups">ENTREES</h2>
<article class="restaurant__child">
<div class="restaurant_content">
<h2>Tuna Carpaccio</h2>
<p>seasoned with yuzu<span class="pricetags">25€</span></p>
<div class="checkmark">
<i class="fa-solid fa-circle-check checkmarkspin"></i>
</div>
</div>
</article>
<article class="restaurant__child">
<div class="restaurant_content">
<h2>Crunchy Lobster Croquets</h2>
<p>with seasonal vegetables<span class="pricetags">35€</span></p>
<div class="checkmark">
<i class="fa-solid fa-circle-check checkmarkspin"></i>
</div>
</div>
</article>
<article class="restaurant__child">
<div class="restaurant_content">
<h2>Mushroom soup</h2>
<p>with truffles<span class="pricetags">20€</span></p>
<div class="checkmark">
<i class="fa-solid fa-circle-check checkmarkspin"></i>
</div>
</div>
</article>
</section>
<section class="maindishes">
<h2 class="groups">MAIN DISH</h2>
<article class="restaurant__child">
<div class="restaurant_content">
<h2>Roast Chicken with Provincial Herbs</h2>
<p>with truffle cream<span class="pricetags">40€</span></p>
<div class="checkmark">
<i class="fa-solid fa-circle-check checkmarkspin"></i>
</div>
</div>
</article>
<article class="restaurant__child">
<div class="restaurant_content">
<h2>Roasted Lobster</h2>
<p>with seasonal vegetables<span class="pricetags">35€</span></p>
<div class="checkmark">
<i class="fa-solid fa-circle-check checkmarkspin"></i>
</div>
</div>
</article>
<article class="restaurant__child">
<div class="restaurant_content">
<h2>Angust Beef Ribs</h2>
<p>with mashed parsnips<span class="pricetags">44€</span></p>
<div class="checkmark">
<i class="fa-solid fa-circle-check checkmarkspin"></i>
</div>
</div>
</article>
</section>
<section class="desserts">
<h2 class="groups">DESSERTS</h2>
<article class="restaurant__child">
<div class="restaurant_content">
<h2>Assorted Dessert Plate</h2>
<p>Chef's choice<span class="pricetags">18€</span></p>
<div class="checkmark">
<i class="fa-solid fa-circle-check checkmarkspin"></i>
</div>
</div>
</article>
<article class="restaurant__child">
<div class="restaurant_content">
<h2>Crème brulée</h2>
<p>Revisted<span class="pricetags">22€</span></p>
<div class="checkmark">
<i class="fa-solid fa-circle-check checkmarkspin"></i>
</div>
</div>
</article>
<article class="restaurant__child">
<div class="restaurant_content">
<h2>Tiramisu</h2>
<p>with hazelnuts<span class="pricetags">23€</span></p>
<div class="checkmark">
<i class="fa-solid fa-circle-check checkmarkspin"></i>
</div>
</div>
</article>
</section>
</div>
<button class="order-button">Order</button>
</main>
<footer>
<h1><img src="images/ohmyfoodwhite.png" id="footerlogo" alt="ohmyfood logo"></h1>
<ul>
<li><i class="fas fa-utensils fa-xs"></i>Suggest a restaurant</li>
<li><i class="fas fa-hands-helping fa-xs"></i>Become a partner</li>
<li>Legal</li>
<li><a href="mailto:name@rapidtables.com?subject=The%20subject%20of%20the%20mail">Contact</a></li>
</ul>
</footer>
</body>
</html>