-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
154 lines (133 loc) · 5.58 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
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="/assets/style.css">
<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:ital,wght@0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Shrikhand&display=swap"
rel="stylesheet">
<script src="https://kit.fontawesome.com/58fb884d9c.js" crossorigin="anonymous"></script>
<title>Ohmyfood</title>
</head>
<body>
<!-- Header -->
<header class="header">
<div class="header__logo">
<img src="/assets/logo/[email protected]" alt="Logo-Ohmyfood" class="logo-ohmyfood">
</div>
</header>
<main>
<!-- Section Location -->
<div class="location">
<i class="fa-solid fa-location-dot"></i>
<p>Paris, Belleville</p>
</div>
<!-- Section Réservez le menu qui vous convient -->
<section class="reserve-menu">
<h1>Réservez le menu qui vous convient</h1>
<p>Découvrez des restaurants d’exception, sélectionnés par nos soins.</p>
<a href="" class="button__text">
<div class="button button-clickable">
<p>Explorer nos restaurants</p>
</div>
</a>
</section>
<!-- Section Fontionnement -->
<section class="function">
<h2>Fonctionnement</h2>
<div class="function__card">
<p class="function__card-number">1</p>
<i class="fa-solid fa-mobile-screen-button function__card-icon"></i>
<p>Choisissez un restaurant</p>
</div>
<div class="function__card">
<p class="function__card-number">1</p>
<i class="fa-solid fa-mobile-screen-button function__card-icon"></i>
<p>Choisissez un restaurant</p>
</div>
<div class="function__card">
<p class="function__card-number">1</p>
<i class="fa-solid fa-mobile-screen-button function__card-icon"></i>
<p>Choisissez un restaurant</p>
</div>
</section>
<!-- Section Restaurants -->
<section id="restaurants" class="restaurant">
<h2>Restaurants</h2>
<div class="restaurant__line-1">
<article class="restaurant__card">
<div class="restaurant__card-img">
<img src="/assets/restaurants/jay-wennington-N_Y88TWmGwA-unsplash.jpg"
alt="Image du restaurant">
</div>
<div class="restaurant__card-text">
<h3>Nom du restaurant</h3>
<p>description du restaurant</p>
</div>
</article>
<article class="restaurant__card">
<div class="restaurant__card-img">
<img src="/assets/restaurants/jay-wennington-N_Y88TWmGwA-unsplash.jpg"
alt="Image du restaurant">
</div>
<div class="restaurant__card-text">
<h3>Nom du restaurant</h3>
<p>description du restaurant</p>
</div>
</article>
</div>
<div class="restaurant__line-2">
<article class="restaurant__card">
<div class="restaurant__card-img">
<img src="/assets/restaurants/jay-wennington-N_Y88TWmGwA-unsplash.jpg"
alt="Image du restaurant">
</div>
<div class="restaurant__card-text">
<h3>Nom du restaurant</h3>
<p>description du restaurant</p>
</div>
</article>
<article class="restaurant__card">
<a href="">
<div class="restaurant__card-img">
<img src="/assets/restaurants/jay-wennington-N_Y88TWmGwA-unsplash.jpg"
alt="Image du restaurant">
</div>
<div class="restaurant__card-text">
<h3>Nom du restaurant</h3>
<p>description du restaurant</p>
</div>
</a>
</article>
</div>
</section>
</main>
<!-- Footer -->
<footer class="footer">
<div class="footer__logo">
<h2 class="footer__logo-text">ohmyfood</h2>
</div>
<nav class="footer__nav">
<div class="footer__nav-item">
<a href="#" class="footer__nav-link">
<i class="fa-solid fa-utensils"></i>
<p>Proposer un restaurant </p>
</a>
<a href="#" class="footer__nav-link">
<i class="fa-solid fa-handshake-angle"></i>
<p>Devenir partenaire</p>
</a>
<a href="#" class="footer__nav-link">
<p>Mentions légales</p>
</a>
<a href="mailto:[email protected]" class="footer__nav-link">
<p>Contacts</p>
</a>
</div>
</nav>
</footer>
</body>
</html>