-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
133 lines (130 loc) · 5.73 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
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="utf-8" />
<title>Oh My Food</title>
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Shrikhand&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&display=swap" rel="stylesheet">
<script src="https://kit.fontawesome.com/da7bc48d54.js" crossorigin="anonymous"></script>
<link rel="icon" href="images/favicon.jpg">
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<link rel="stylesheet" href="master.css" />
</head>
<body>
<header class="d-flex justify-content-center align-items-center">
<div class="container t-center">
<img src="images/logo/[email protected]" alt="logo.svg">
</div>
</header>
<main>
<!-- <div id="loading-spinner">
<i class="fas fa-spinner"></i>
</div> -->
<section id="localisation" class="container d-flex justify-content-center bg-grey" >
<h6 class="d-flex align-items-center"><i class="fas fa-map-marker-alt mr-1"></i>Paris, Belleville</h6>
</section>
<section id="landing" class="container bg-lightgrey t-center p-2">
<h1 class="mb-1">Réservez le menu qui vous convient</h1>
<h2 class="mb-2">Découvrez des restaurants d'exception, sélectionnés par nos soins.</h2>
<button type="button" name="button" class="call-to-action mb-1 pl-1 pr-1">Explorer nos restaurants</button>
</section>
<section id="manual" class="container pt-2">
<h1 class="mb-1">Fonctionnement</h1>
<span class="step">
<span class="step-number">1</span>
<i class="step-icon fas fa-mobile-alt ml-1 mr-1"></i>Choisissez un restaurant
</span>
<span class="step">
<span class="step-number">2</span>
<i class="step-icon fas fa-bars ml-1 mr-1"></i>Composez votre menu
</span>
<span class="step-alt">
<span class="step-number">3</span>
<i class="step-icon fas fa-store primary ml-1 mr-1"></i>Dégustez au restaurant
</span>
</section>
<section id="restaurants" class="container pt-2 pb-1">
<h1 class="mb-1">Restaurants</h1>
<div class="card">
<div class="img-wrapper">
<a href="la-palette-du-gout.html">
<img src="images/restaurants/jay-wennington-N_Y88TWmGwA-unsplash.jpg" alt="la-palette-du-gout.jpg">
</a>
</div>
<div class="new-restaurant">
<span>Nouveau</span>
</div>
<div class="card-content">
<h3><a href="la-palette-du-gout.html">La palette du goût</a></h3>
<h4>Ménilmontant</h4>
<div class="like">
<i class="far fa-heart"></i>
<i class="fas fa-heart"></i>
</div>
</div>
</div>
<div class="card">
<div class="img-wrapper">
<a href="la-note-enchantee.html">
<img src="images/restaurants/stil-u2Lp8tXIcjw-unsplash.jpg" alt="la-note-enchantee.jpg">
</a>
</div>
<div class="new-restaurant">
<span>Nouveau</span>
</div>
<div class="card-content">
<h3><a href="la-note-enchantee.html">La note enchantée</a></h3>
<h4>Charonne</h4>
<div class="like">
<i class="far fa-heart"></i>
<i class="fas fa-heart"></i>
</div>
</div>
</div>
<div class="card">
<div class="img-wrapper">
<a href="a-la-francaise.html">
<img src="images/restaurants/toa-heftiba-DQKerTsQwi0-unsplash.jpg" alt="a-la-française.jpg">
</a>
</div>
<div class="card-content">
<h3><a href="a-la-francaise.html">À la française</a></h3>
<h4>Cité Rouge</h4>
<div class="like">
<i class="far fa-heart"></i>
<i class="fas fa-heart"></i>
</div>
</div>
</div>
<div class="card">
<div class="img-wrapper">
<a href="le-delice-des-sens.html">
<img src="images/restaurants/louis-hansel-shotsoflouis-qNBGVyOCY8Q-unsplash.jpg" alt="le-delice-des-sens.jpg">
</a>
</div>
<div class="card-content">
<h3><a href="le-delice-des-sens.html">Le délice des sens</a></h3>
<h4>Folie-Méricourt</h4>
<div class="like">
<i class="far fa-heart"></i>
<i class="fas fa-heart"></i>
</div>
</div>
</div>
</section>
</main>
<footer class="p-1">
<div class="container">
<p class="brand mb-1">ohmyfood</p>
<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>
<li>Contact</li>
</ul>
</div>
</footer>
</body>
</html>