-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
157 lines (141 loc) · 5.71 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
154
155
156
157
<!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">
<title>ohmyfood</title>
<link rel="stylesheet" href="css/prefixed/style.css">
<!--Google fonts-->
<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;400;700&family=Shrikhand&display=swap" rel="stylesheet">
<!--font awesome-->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.15.3/css/all.css">
</head>
<body>
<div class="spinner">
<div class="spinner__arcs">
<div class="spinner__arcs--small"></div>
</div>
</div>
<!--header-->
<header class="index__header">
<h1>ohmyfood</h1>
</header>
<main>
<!--location-->
<div class="location__banner">
<div class="location__icon">
<i class="fas fa-map-marker-alt"></i>
</div>
<div class="location__city">
<p>Paris, Belleville</p>
</div>
</div>
<!--explore our restaurants-->
<section class="explore__section">
<h2>Réservez le menu qui vous convient</h2>
<p>Découvrez des restaurants d'exception, sélectionnés par nos soins</p>
<button class="button--big">Explorer nos restaurants</button>
</section>
<!--functioning-->
<section class="functioning__section">
<h2>Fonctionnement</h2>
<div class="functioning__cards__bloc">
<div class="functioning__card">
<span>1</span>
<i class="fas fa-mobile-alt"></i>
<p>Choisissez un restaurant</p>
</div>
<div class="functioning__card">
<span>2</span>
<i class="fas fa-list-ul"></i>
<p>Composez votre menu</p>
</div>
<div class="functioning__card">
<span>3</span>
<i class="fas fa-store"></i>
<p>Dégustez au restaurant</p>
</div>
</div>
</section>
<!--restaurants-->
<section class="restaurants__section">
<h2>Restaurants</h2>
<a href="La_palette_du_gout.html">
<div class="restaurant__card">
<img src="images/restaurants/jay-wennington-N_Y88TWmGwA-unsplash.jpg" alt="photo de plat">
<span>Nouveau</span>
<div class="restaurant__card__description">
<div class="restaurant__label">
<h3>La palette du goût</h3>
<p>Ménilmontant</p>
</div>
<div class="heart">
<i class="far fa-heart"></i>
<i class="fas fa-heart"></i>
</div>
</div>
</div>
</a>
<a href="La_note_enchantee.html">
<div class="restaurant__card">
<img src="images/restaurants/stil-u2Lp8tXIcjw-unsplash.jpg" alt="photo de plat">
<span>Nouveau</span>
<div class="restaurant__card__description">
<div class="restaurant__label">
<h3>La note enchantée</h3>
<p>Charonne</p>
</div>
<div class="heart">
<i class="far fa-heart"></i>
<i class="fas fa-heart"></i>
</div>
</div>
</div>
</a>
<a href="A_la_francaise.html">
<div class="restaurant__card">
<img src="images/restaurants/toa-heftiba-DQKerTsQwi0-unsplash.jpg" alt="photo de plat">
<div class="restaurant__card__description">
<div class="restaurant__label">
<h3>À la française</h3>
<p>Cité rouge</p>
</div>
<div class="heart">
<i class="far fa-heart"></i>
<i class="fas fa-heart"></i>
</div>
</div>
</div>
</a>
<a href="Le_delice_des_sens.html">
<div class="restaurant__card">
<img src="images/restaurants/louis-hansel-shotsoflouis-qNBGVyOCY8Q-unsplash.jpg" alt="photo de plat">
<div class="restaurant__card__description">
<div class="restaurant__label">
<h3>Le délice des sens</h3>
<p>Folie-Méricourt</p>
</div>
<div class="heart">
<i class="far fa-heart"></i>
<i class="fas fa-heart"></i>
</div>
</div>
</div>
</a>
</section>
</main>
<!--footer-->
<footer class="index__footer">
<h2>
ohmyfood
</h2>
<a href="#"> <i class="fas fa-utensils"></i>Proposer un restaurant</a>
<a href="#"> <i class="fas fa-hands-helping"></i>Devenir partenaire</a>
<a href="#">Mentions légales</a>
<a href="mailto:[email protected]">Contact</a>
</footer>
</body>
</html>