-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
153 lines (153 loc) · 6.46 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
<!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/style.css">
<script src="https://kit.fontawesome.com/c7d3dcb5af.js" crossorigin="anonymous"></script>
<title>Oh My Food</title>
</head>
<body>
<!--loading spinner-->
<div id="wrapper">
<span class="loader">OhMyFood!</span>
<span class="loader">OhMyFood!</span>
<span class="loader">OhMyFood!</span>
</div>
<!--corp de la page-->
<div id="main">
<header>
<div id="logo">
<img src="./assets/Maquettes_Ohmyfood/images/logo/ohmyfood@2x.svg" alt="logo oh my food">
</div>
</header>
<div id="top">
<div id="logo_caption">
<span class="location_dot"><i class="fa-solid fa-location-dot"></i></span>
<form>
<input type="text" id="location" placeholder="Paris, Belleville">
</form>
</div>
<div class="intro">
<article>
<h1>Réservez le menu qui vous convient</h1>
<p>Découvrez des restaurants d'exception, séléctionnés par nos soins.</p>
</article>
<div class="btn">
<a href="#">
Explorer nos restaurants
</a>
</div>
</div>
</div>
<!--filtres-->
<section id="functions">
<h2>Fonctionnement</h2>
<ol class="list">
<li class="functions_list">
<div class="list_item">
<div class="counter">1</div>
<span><i class="fa-solid fa-mobile-screen-button"></i></span>
<p>Choisissez un restaurant</p>
</div>
</li>
<li class="functions_list">
<div class="list_item">
<div class="counter">2</div>
<span><i class="fa-solid fa-list"></i></span>
<p>Composez votre menu</p>
</div>
</li>
<li class="functions_list">
<div class="list_item">
<div class="counter">3</div>
<span><i class="fa-solid fa-store"></i></span>
<p>Dégustez au restaurant</p>
</div>
</li>
</ol>
</section>
<!--cartes des restaurants-->
<section id="resto">
<h2>Restaurants</h2>
<div id="cards">
<a href="./html/la_palette_du_gout.html">
<figure>
<div class="alert"> Nouveau</div>
<img src="./assets/Maquettes_Ohmyfood/images/restaurants/jay-wennington-N_Y88TWmGwA-unsplash.jpg" alt="la palette du gout">
<figcaption>
<div class="fill">
<span class="heart"><i class="fa-regular fa-heart"></i></span>
<span class="heart_full"><i class="fa-solid fa-heart"></i></span>
</div>
<h3>La palette du goût</h3>
<p>Ménilmontant</p>
</figcaption>
</figure>
</a>
<a href="./html/la_note_enchantée.html">
<figure>
<div class="alert"> Nouveau</div>
<img src="./assets/Maquettes_Ohmyfood/images/restaurants/stil-u2Lp8tXIcjw-unsplash.jpg" alt="La note enchantée">
<figcaption>
<div class="fill">
<span class="heart"><i class="fa-regular fa-heart"></i></span>
<span class="heart_full"><i class="fa-solid fa-heart"></i></span>
</div>
<h3>La note enchantée</h3>
<p>Charonne</p>
</figcaption>
</figure>
</a>
<a href="./html/a-la-francaise.html">
<figure>
<img src="./assets/Maquettes_Ohmyfood/images/restaurants/toa-heftiba-DQKerTsQwi0-unsplash.jpg" alt="À la Française">
<figcaption>
<div class="fill">
<span class="heart"><i class="fa-regular fa-heart"></i></span>
<span class="heart_full"><i class="fa-solid fa-heart"></i></span>
</div>
<h3>À la Française</h3>
<p>Cité Rouge</p>
</figcaption>
</figure>
</a>
<a href="./html/a-la-francaise.html">
<figure>
<img src="./assets/Maquettes_Ohmyfood/images/restaurants/louis-hansel-shotsoflouis-qNBGVyOCY8Q-unsplash.jpg" alt="Le délice des sens">
<figcaption>
<div class="fill">
<span class="heart"><i class="fa-regular fa-heart"></i></span>
<span class="heart_full"><i class="fa-solid fa-heart"></i></span>
</div>
<h3>Le délice des sens</h3>
<p>Folie-Méricourt</p>
</figcaption>
</figure>
</a>
</div>
</section>
</div>
<!--pied de page-->
<footer>
<h3 class="title">Ohmyfood</h3>
<ul>
<li class="footer_list">
<span><i class="fa-solid fa-utensils"></i></span>
<p>Proposer un restaurant</p>
</li>
<li class="footer_list">
<span><i class="fa-solid fa-handshake-angle"></i></span>
<p>Devenir partenaire</p>
</li>
<li class="footer_list">
Mentions légales
</li>
<li class="footer_list">
<a href="mailto:ohmyfood@exemple.fr">Contact</a>
</li>
</ul>
</footer>
</body>
</html>