-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
151 lines (138 loc) · 6.17 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
<!doctype html>
<html lang="fr">
<head>
<meta charset="utf-8">
<title>ohmyfood - Accueil</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="Site ohmyfood, création du site ohmyfood d'après les maquettes fournies pour le projet 3 OpenClassrooms">
<link rel="stylesheet" href="styles/main.css" type="text/css">
<script src="https://kit.fontawesome.com/bf2091fcc8.js" crossorigin="anonymous"></script>
<link href="https://fonts.googleapis.com/css2?family=Roboto&display=swap" rel="stylesheet">
<link href='https://fonts.googleapis.com/css?family=Shrikhand' rel='stylesheet'>
</head>
<body>
<div class="loaderMain">
<span class="loader loaderCircles"></span>
</div>
<header>
<a href="index.html">
<img src="images/[email protected]" alt="logo ohmyfood"/>
</a>
</header>
<section>
<div class="maps">
<span>
<i class="fas fa-map-marker-alt"></i>
</span>
<span class="maps__search">
<input type="search" name="city" value="Paris, Belleville" placeholder="Votre ville">
</span>
</div>
<div class="reservations">
<h1>Réservez le menu qui vous convient</h1>
<p>Découvrez des restaurants d'exception, séléctionnés par nos soins.</p>
<div class="btnExploration">
<button onclick="window.location.href = '#rubriqueRestaurants';">
Explorer nos restaurants</button>
</div>
</div>
</section>
<section class="howTo">
<h2>Fonctionnement</h2>
<div class="howTo__list">
<div class="howTo__list__card">
<div class="howTo__list__card__bulle">
1
</div>
<div class="howTo__list__card__text">
<i class="fas fa-mobile-alt"></i>Choisissez un restaurant
</div>
</div>
<div class="howTo__list__card">
<div class="howTo__list__card__bulle">
2
</div>
<div class="howTo__list__card__text">
<i class="fas fa-list-ul"></i>Composez votre menu
</div>
</div>
<div class="howTo__list__card" id="pinkCard">
<div class="howTo__list__card__bulle">
3
</div>
<div class="howTo__list__card__text">
<i class="fas fa-store"></i>Dégustez au restaurant
</div>
</div>
</div>
</section>
<section class="restaurants" id="rubriqueRestaurants">
<h2>Restaurants</h2>
<div class="restaurants__list">
<a href="pages/palette.html" class="restaurants__list__card">
<div class="restaurants__list__card__new">
<span>Nouveau</span>
</div>
<img src="images/jay-wennington-N_Y88TWmGwA-unsplash.jpg" alt="La palette du goût Ménilmontant">
<div class="restaurants__list__card__legend">
<div>
<h3>La palette du goût</h3>
<p>Ménilmontant</p>
</div>
<div>
<i class="fas fa-heart"></i>
</div>
</div>
</a>
<a href="pages/enchantee.html" class="restaurants__list__card">
<div class="restaurants__list__card__new">
<span>Nouveau</span>
</div>
<img src="images/stil-u2Lp8tXIcjw-unsplash.jpg" alt="La note enchantée Charonne">
<div class="restaurants__list__card__legend">
<div>
<h3>La note enchantée</h3>
<p>Charonne</p>
</div>
<div>
<i class="fas fa-heart"></i>
</div>
</div>
</a>
<a href="pages/francaise.html" class="restaurants__list__card">
<img src="images/toa-heftiba-DQKerTsQwi0-unsplash.jpg" alt="A la française Cité Rouge">
<div class="restaurants__list__card__legend">
<div>
<h3>A la française</h3>
<p>Cité Rouge</p>
</div>
<div>
<i class="fas fa-heart"></i>
</div>
</div>
</a>
<a href="pages/delice.html" class="restaurants__list__card">
<img src="images/louis-hansel-shotsoflouis-qNBGVyOCY8Q-unsplash.jpg" alt="Le délice des sens Folie-Méricourt">
<div class="restaurants__list__card__legend">
<div>
<h3>Le délice des sens</h3>
<p>Folie-Méricourt</p>
</div>
<div>
<i class="fas fa-heart"></i>
</div>
</div>
</a>
</div>
</section>
<footer>
<p><a href="index.html" class="footerLogo">ohmyfood</a></p>
<ul>
<li><a href=#><i class="fas fa-utensils"></i> Proposer un restaurant</a></li>
<li><a href=#><i class="fas fa-hands-helping"></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>