-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
167 lines (158 loc) · 7.31 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
158
159
160
161
162
163
164
165
166
167
<!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>Oh My Food!</title>
<!-- CSS -->
<link rel="stylesheet" type="text/css" href="public/style.css">
<!-- Font Awesome-->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.13.1/css/all.min.css">
<!-- Google Fonts -->
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Shrikhand&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&family=Shrikhand&display=swap" rel="stylesheet">
</head>
<body>
<!-- page loader -->
<div class="spinner">
<span class="spinner_load">
<b class="spinner_icon"><i class="fas fa-utensils"></i></b>
</span>
</div>
<!-- header -->
<header>
<div class="header">
<a href="index.html"><h1 class="header_logo">ohmyfood</h1></a>
</div>
</header>
<!-- location -->
<main>
<form class="location">
<i class="fas fa-map-marker-alt" id="icon_location"></i>
<input type="text" placeholder="Paris, Belleville" name="text" class="search_bar">
</form>
<section class="hero">
<h2 class="hero_title">Réservez le menu qui vous convient</h2>
<p class="hero_text">Découvrez des restaurants d'exception, sélectionnés par nos soins.</p>
<div class="hero_button">
<p class="hero_button-sub">Explorer nos restaurants</p>
</div>
</section>
<!-- user notice -->
<section class="user_notice">
<div class="notice">
<h2 class="notice_title">Fonctionnement</h2>
<div class="notice_steps">
<div class="notice_step">
<span class="step_number">1</span>
<i class="step_icon fas fa-mobile-alt"></i>
<p class="step_text">Choisissez un restaurant</p>
</div>
<div class="notice_step">
<span class="step_number">2</span>
<i class="step_icon fas fa-list-ul"></i>
<p class="step_text">Composez votre menu</p>
</div>
<div class="notice_step">
<span class="step_number">3</span>
<i class="step_icon fas fa-store"></i>
<p class="step_text">Dégustez au restaurant</p>
</div>
</div>
</div>
</section>
<!-- restaurants-->
<section class="restaurants">
<h2 class="restaurants_title">Restaurants</h2>
<div class="restaurant_items">
<a href="la-palette-du-gout.html">
<div class="restaurant_item">
<div class="restaurant_item_image">
<p class="restaurant_item_new">Nouveau</p>
<img src="images/restaurants/restaurant_1.jpg" alt="La palette du goût">
</div>
<div class="restaurant_bloc">
<div class="restaurant_bloc-info">
<h3 class="restaurant_info-name">La palette du goût</h3>
<p class="restaurant_info-city">Ménilmontant</p>
</div>
<span class="heart">
<i class="fas fa-heart"></i>
</span>
</div>
</div>
</a>
<a href="la-note-enchantee.html">
<div class="restaurant_item">
<div class="restaurant_item_image">
<p class="restaurant_item_new">Nouveau</p>
<img src="images/restaurants/restaurant_2.jpg" alt="La note enchantée">
</div>
<div class="restaurant_bloc">
<div class="restaurant_bloc-info">
<h3 class="restaurant_info-name">La note enchantée</h3>
<p class="restaurant_info-city">Charonne</p>
</div>
<span class="heart">
<i class="fas fa-heart"></i>
</span>
</div>
</div>
</a>
<a href="a-la-francaise.html">
<div class="restaurant_item">
<div class="restaurant_item_image">
<img src="images/restaurants/restaurant_3.jpg" alt="A la française">
</div>
<div class="restaurant_bloc">
<div class="restaurant_bloc-info">
<h3 class="restaurant_info-name">À la française</h3>
<p class="restaurant_info-city">Cité Rouge</p>
</div>
<span class="heart">
<i class="fas fa-heart"></i>
</span>
</div>
</div>
</a>
<a href="le-delice-des-sens.html">
<div class="restaurant_item">
<div class="restaurant_item_image">
<img src="images/restaurants/restaurant_4.jpg" alt="Le délice des sens">
</div>
<div class="restaurant_bloc">
<div class="restaurant_bloc-info">
<h3 class="restaurant_info-name">Le délice des sens</h3>
<p class="restaurant_info-city">Folie-Méricourt</p>
</div>
<span class="heart">
<i class="fas fa-heart"></i>
</span>
</div>
</div>
</a>
</div>
</section>
</main>
<!-- footer -->
<footer class="footer">
<div class="logo"><a href="index.html">ohmyfood</a></div>
<div class="footer-link">
<i class="fas fa-utensils"></i>
<h3 class="footer-link_title"><a href="#">Proposer un restaurant</a></h3>
</div>
<div class="footer-link">
<i class="fas fa-hands-helping"></i>
<h3 class="footer-link_title"><a href="#">Devenir partenaire</a></h3>
</div>
<div class="footer-link"><a href="#">
<h3 class="footer-link_title">Mentions légales</h3></a>
</div>
<div class="footer-link">
<h3 class="footer-link_title"><a href="mailto:[email protected]">Contact</a></h3>
</div>
</footer>
</body>
</html>