-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIndex.html
More file actions
148 lines (131 loc) · 5.87 KB
/
Copy pathIndex.html
File metadata and controls
148 lines (131 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css">
<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;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap" rel="stylesheet">
<link rel="stylesheet" href="styles.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="Ohmyfood_Paris" content="Réservez le menu qui vous convient">
<title>Ohmyfood_Paris</title>
</head>
<body>
<div class="div">
<div id="loader" class="loader"></div>
</div>
<div id="main__content">
<header class="header">
<img src="ohmyfood@2x.svg" alt="logo ohmyfood">
</header>
<div class="location">
<i class="fas fa-map-marker-alt"></i>
<p>Paris, Belleville</p>
</div>
<div class="grand__titre">
<div class="titre">
<h1>Réservez le menu qui vous convient</h1>
</div>
<div class="sous__titre">
<p>Découvre des restaurants d'exception, selectionnés par nos soins.</p>
</div>
<div class="explorer">
<button class="btn">Explorer nos restaurants</button>
</div>
</div>
<article class="fonctionnement">
<div class="fonction">
<h2>Fonctionnement</h2>
</div>
<div class="fct">
<button> <span class="number">1</span><i class="fas fa-mobile-alt"></i> Choisissez un restaurant</button>
<button> <span class="number">2</span><i class="fas fa-list-ul"></i>Composez votre menu</button>
<button> <span class="number">3</span><i class="fas fa-store"></i>Devenez partenaire</button>
</div>
</article>
<div class="restauration">
<div class="test">
<h2>Restaurants</h2>
</div>
</div>
<section class="Restaurant">
<div class="restaurant-card">
<div class="card-image">
<a href="La_palette_du_goût.html">
<img src="jay-wennington-N_Y88TWmGwA-unsplash.jpg" alt="Plat de La palette du goût" >
<span class="Nouveau">Nouveau</span>
</a>
</div>
<div class="card-content">
<h3 class="restaurant-name">La palette du goût</h3>
<p class="restaurant-location">Ménilmontant</p>
<button class="favorite-button"> <i class="far fa-heart fa-2x"></i></button>
</div>
</div>
<div class="restaurant-card">
<div class="card-image">
<a href="La_note_enchantée.html">
<img src="stil-u2Lp8tXIcjw-unsplash.jpg" alt="La note enchantée" >
<span class="Nouveau">Nouveau</span>
</a>
</div>
<div class="card-content">
<h3 class="restaurant-name">La note enchantée</h3>
<p class="restaurant-location">Charonne</p>
<button class="favorite-button"> <i class="far fa-heart fa-2x"></i></button>
</div>
</div>
</section>
<section class="Restaurant">
<div class="restaurant-card">
<div class="card-image">
<a href="La-française.html">
<img src="toa-heftiba-DQKerTsQwi0-unsplash.jpg" alt="A la française" >
</a>
</div>
<div class="card-content">
<h3 class="restaurant-name">À la française</h3>
<p class="restaurant-location">Cité Rouge</p>
<button class="favorite-button"> <i class="far fa-heart fa-2x"></i></button>
</div>
</div>
<div class="restaurant-card">
<div class="card-image">
<a href="Le_délice_des_sens.html">
<img src="louis-hansel-shotsoflouis-qNBGVyOCY8Q-unsplash.jpg" alt="Le delice des sens" >
</a>
</div>
<div class="card-content">
<h3 class="restaurant-name">Le delice des sens</h3>
<p class="restaurant-location">Folie-Méricourt</p>
<button class="favorite-button"> <i class="far fa-heart fa-2x"></i></button>
</div>
</div>
</section>
<footer class="footer">
<ul>
<li><i class="fas fa-utensils"></i>Proposer un restaurant</li>
<li><i class="fas fa-hands-helping"></i>Devenir partenaire</li>
<li>Mentions légales</li>
</ul>
<a href="mailto:ZoQG3@example.com">Contact</a>
<h1 class="ohmyfood">ohmyfood</h1>
</footer>
</div>
<script>
document.addEventListener("DOMContentLoaded", function () {
const loader = document.getElementById("loader");
const main = document.getElementById("main__content");
// Délai avant d'afficher le contenu
const DELAY = 2000;
// Afficher le contenu après le délai
setTimeout(() => {
// Cacher le loader
loader.style.display = "none";
// Afficher le contenu
main.style.display = "block";
}, DELAY);
});
</script>
</body>
</html>