-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
148 lines (137 loc) · 5.81 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
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>OhMyFood - Accueil</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;500;700&family=Shrikhand&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.1/css/all.min.css"
integrity="sha512-MV7K8+y+gLIBoVD59lQIYicR65iaqukzvf/nwasF0nqhPay5w/9lJmVM2hMDcnK1OnMGCdVK+iQrJ7lzPJQd1w=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="./assets/css/style.css">
</head>
<body>
<!-- loader -->
<div class="loader-container">
<div class="loader"></div>
<i class="fa-solid fa-utensils fork"></i>
</div>
<!-- end loader -->
<header>
<img src="./assets/images/logo/ohmyfood.png" alt="logo ohmyfood en noir">
<form class="location">
<i class="fa-solid fa-location-dot"></i>
<label for="location"></label>
<input type="search" id="location" placeholder="Paris, Belleville">
</form>
</header>
<main>
<!-- presentation ohmyfood -->
<header class="presentation">
<h1>Réservez le menu qui vous convient</h1>
<p>Découvrez des restaurants d’exception, sélectionnés par nos soins.</p>
<a href="#restaurants" class="button"> Explorer nos restaurants</a>
</header>
<!-- end presentation ohmyfood -->
<!-- fonctionnement section -->
<section class="fonctionnement">
<h2>Fonctionnement</h2>
<ol>
<li><i class="fa-solid fa-mobile-alt"></i>
Choisissez un restaurant</li>
<li><i class="fa-solid fa-list"></i>
Composez votre menu</li>
<li><i class="fa-solid fa-store"></i>
Dégustez au restaurant</li>
</ol>
</section>
<!-- fonctionnement section -->
<!-- presentation restaurants -->
<article id="restaurants" class="restaurants">
<h2>Restaurants</h2>
<ul>
<li>
<a href="./restaurant/Menu_la_palette_du_gout.html.html">
<p class="new">Nouveau</p>
<figure>
<img src="./assets/images/restaurants/jay-wennington-N_Y88TWmGwA-unsplash.jpg" alt="Assiette de poisson dans un restaurant">
<figcaption>
<h3>La palette du goût</h3>
<p>Ménilmontant</p>
</figcaption>
</figure>
</a>
<i class="fa-regular fa-heart"></i>
<i class="fa-solid fa-heart heart"></i>
</li>
<li>
<a href="./restaurant/Menu_la_note_enchantee.html.html">
<p class="new">Nouveau</p>
<figure>
<img src="./assets/images/restaurants/stil-u2Lp8tXIcjw-unsplash.jpg" alt="Assiette avec des croquettes de pomme de terre, des boulettes de viandes et des olives">
<figcaption>
<h3>La note enchantée</h3>
<p>Charonne</p>
</figcaption>
</figure>
</a>
<i class="fa-regular fa-heart"></i>
<i class="fa-solid fa-heart heart"></i>
</li>
<li>
<a href="./restaurant/Menu_a_la_francaise.html">
<figure>
<img src="./assets/images/restaurants/toa-heftiba-DQKerTsQwi0-unsplash.jpg" alt="Assiette d'une tartine de pain avec des oeufs et de la salade">
<figcaption>
<h3>À la française</h3>
<p>Cité Rouge</p>
</figcaption>
</figure>
</a>
<i class="fa-regular fa-heart"></i>
<i class="fa-solid fa-heart heart"></i>
</li>
<li>
<a href="./restaurant/Menu_le_delice_des_sens.html">
<figure>
<img src="./assets/images/restaurants/louis-hansel-shotsoflouis-qNBGVyOCY8Q-unsplash.jpg" alt="Assiette japonaise en long avec un poisson mariné">
<figcaption>
<h3>Le délice des sens</h3>
<p>Folie-Méricourt</p>
</figcaption>
</figure>
</a>
<i class="fa-regular fa-heart"></i>
<i class="fa-solid fa-heart heart"></i>
</li>
</ul>
</article>
<!-- end presentation restaurants -->
</main>
<footer>
<h3>Ohmyfood</h3>
<ul>
<li>
<a href="#">
<i class="fa-solid fa-utensils"></i>
Proposer un restaurant
</a>
</li>
<li>
<a href="#">
<i class="fa-regular fa-handshake"></i>
Devenir partenaire
</a>
</li>
<li>
<a href="#">Mentions légales</a>
</li>
<li>
<a href="mailto:[email protected]">Contact</a>
</li>
</ul>
</footer>
</body>
</html>