-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
155 lines (139 loc) · 5.87 KB
/
index.html
File metadata and controls
155 lines (139 loc) · 5.87 KB
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
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="style.css" />
<script src="https://kit.fontawesome.com/348d9b1434.js" crossorigin="anonymous"></script>
<title>Oh My Food</title>
</head>
<!-- LOADER -->
<div class=loader__background>
<div id="loader__animation">
<div class="letters">
<span class="letter01">o</span>
<span class="letter02">h</span>
<span class="letter03">m</span>
<span class="letter04">y</span>
<span class="letter05">f</span>
<span class="letter06">o</span>
<span class="letter07">o</span>
<span class="letter08">d</span>
</div>
</div>
</div>
<!-- HEADER REUTILISABLE -->
<header>
<a class="Menu__lien" href="#"><i id="icone__fleche" class="fas fa-arrow-left"></i></a>
<h1>ohmyfood</h1>
</header>
<!-- SECTION LOCALISATION/LOCALISATION -->
<section>
<div class="localisation">
<i class="fas fa-map-marker-alt"></i>
<input type="text" class="search" name="recherche" placeholder="Paris, Belleville"/>
</div>
<div class="section__information">
<h2>Réservez le menu qui vous convient</h2>
<h4>Découvrez des restaurants d'exception, sélectionnés par nos soins.</h4>
<a href="#restaurant">Explorer nos restaurants</a>
</div>
</section>
<!-- ASIDE DESCRIPTIF/INFORMATION -->
<aside id="restaurant">
<h2>Fonctionnement</h2>
<div class="fonctionnement">
<div class="fonctionnement__row">
<p class="pastille">1</p>
<i class="fas fa-mobile-alt"></i>
<p class="fonctionnement__row__description">Choisissez un restaurant</p>
</div>
<div class="fonctionnement__row">
<p class="pastille">2</p>
<i class="fas fa-list"></i>
<p class="fonctionnement__row__description">Composez votre menu</p>
</div>
<div class="fonctionnement__row">
<p class="pastille">3</p>
<i class="fas fa-store"></i>
<p class="fonctionnement__row__description">Dégustez au restaurant</p>
</div>
</div>
</aside>
<!-- VIGNETTE RESTAURANT -->
<article>
<h2>Restaurants</h2>
<div class="article__organisation">
<div class="restaurant__vignette__card">
<a href="page_html/La_palette_du_goût.html">
<img src="Maquette/Maquettes_Ohmyfood/images/restaurants/jay-wennington-N_Y88TWmGwA-unsplash.jpg" alt="La palette du goût">
</a>
<div class="restaurant__vignette__text">
<div>
<h3>La pallette du goût</h3>
<h4>Ménilmontant</h4>
</div>
<div class="restaurant__vignette__icone">
<i class="far fa-heart light"></i>
<i class="fas fa-heart full"></i>
</div>
</div>
</div>
<div class="restaurant__vignette__card">
<a href="page_html/La_note_enchantée.html">
<img src="Maquette/Maquettes_Ohmyfood/images/restaurants/stil-u2Lp8tXIcjw-unsplash.jpg" alt="La note enchantée">
</a>
<div class="restaurant__vignette__text">
<div>
<h3>La note enchantée</h3>
<h4>Charonne</h4>
</div>
<div class="restaurant__vignette__icone">
<i class="far fa-heart light"></i>
<i class="fas fa-heart full"></i>
</div>
</div>
</div>
<div class="restaurant__vignette__withoutcard">
<a href="page_html/A_la_francaise.html">
<img src="Maquette/Maquettes_Ohmyfood/images/restaurants/toa-heftiba-DQKerTsQwi0-unsplash.jpg" alt="A la Francaise">
</a>
<div class="restaurant__vignette__text">
<div>
<h3>À la francaise</h3>
<h4>Cité Rouge</h4>
</div>
<div class="restaurant__vignette__icone">
<i class="far fa-heart light"></i>
<i class="fas fa-heart full"></i>
</div>
</div>
</div>
<div class="restaurant__vignette__withoutcard">
<a href="page_html/Le_delice_des_sens.html">
<img src="Maquette/Maquettes_Ohmyfood/images/restaurants/louis-hansel-shotsoflouis-qNBGVyOCY8Q-unsplash.jpg" alt="A la Francaise">
</a>
<div class="restaurant__vignette__text">
<div>
<h3>Le délice des sens</h3>
<h4>Folie-Méricourt</h4>
</div>
<div class="restaurant__vignette__icone">
<i class="far fa-heart light"></i>
<i class="fas fa-heart full"></i>
</div>
</div>
</div>
</div>
</article>
<!-- FOOTER -->
<footer>
<p>ohmyfood</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:">Contact</a></li>
</ul>
</footer>
</html>