-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
149 lines (141 loc) · 5.93 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
<!DOCTYPE html>
<html lang="fr">
<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="./css/styles.css" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css"
/>
<title>Accueil - Ohmyfood</title>
</head>
<body>
<div class="loader"><span class="loader__logo">Ohmyfood</span></div>
<header role="banner">
<div class="logo-container">
<p>ohmyfood</p>
</div>
</header>
<main>
<form action="#">
<span></span>
<input type="search" placeholder="Paris, Belleville" />
<!--<button ?-->
</form>
<section class="explore">
<h1>Réservez le menu qui vous convient</h1>
<p>
Découvrez des restaurants d'exception, sélectionnés par nos
soins.
</p>
<button type="button" class="explore__button">
Explorer nos restaurants
</button>
</section>
<section class="works">
<h2>Fonctionnement</h2>
<ol>
<li>Choisissez un restaurant</li>
<li>Composez votre menu</li>
<li>Dégustez au restaurant</li>
</ol>
</section>
<section class="restaurants">
<h2>Restaurants</h2>
<article class="restaurants__article">
<a
href="./restaurants/la_palette_du_gout.html"
class="restaurants__lin"
>
<div class="restaurants__image">
<img
alt="Photo d'un plat du restaurant La palette du goût"
src="images/restaurants/jay-wennington-N_Y88TWmGwA-unsplash.jpg"
/>
</div>
<div class="restaurants__bottom">
<div class="restaurants__texts">
<h3>La palette du goût</h3>
<p>Ménilmontant</p>
</div>
</div>
<span class="new-tag">Nouveau</span>
</a>
<button class="fa-regular fa-heart heart"></button>
</article>
<article class="restaurants__article">
<a
href="./restaurants/la_note_captivee.html"
class="restaurants__lin"
>
<div class="restaurants__image">
<img
alt="Photo d'un plat du restaurant La note enchantée"
src="images/restaurants/stil-u2Lp8tXIcjw-unsplash.jpg"
/>
</div>
<div class="restaurants__bottom">
<div class="restaurants_texts">
<h3>La note captivée</h3>
<p>Charonne</p>
</div>
</div>
<span class="new-tag">Nouveau</span>
</a>
<button class="fa-regular fa-heart heart"></button>
</article>
<article class="restaurants__article">
<a
href="./restaurants/a_la_francaise.html"
class="restaurants__lin"
>
<div class="restaurants__image">
<img
alt="Photo d'un plat du restaurant À la française"
src="images/restaurants/toa-heftiba-DQKerTsQwi0-unsplash.jpg"
/>
</div>
<div class="restaurants__bottom">
<div class="restaurant__texts">
<h3>À la française</h3>
<p>Cité Rouge</p>
</div>
</div>
</a>
<button class="fa-regular fa-heart heart"></button>
</article>
<article class="restaurants__article">
<a
href="./restaurants/le_delice_des_sens.html"
class="restaurants__lin"
>
<div class="restaurants__image">
<img
alt="Photo d'un plat du restaurant Le délice des sens"
src="images/restaurants/louis-hansel-shotsoflouis-qNBGVyOCY8Q-unsplash.jpg"
/>
</div>
<div class="restaurants__bottom">
<div class="restaurants__texts">
<h3>Le délice des sens</h3>
<p>Folie Méricourt</p>
</div>
</div>
</a>
<button class="fa-regular fa-heart heart"></button>
</article>
</section>
</main>
<footer>
<p>Ohmyfood</p>
<ul>
<li>Proposer un restaurant</li>
<li>Devenir partenaire</li>
<li>Mentions légales</li>
<li><a href="mailto:#@ohmyfood.com">Contact</a></li>
</ul>
</footer>
</body>
</html>