-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
90 lines (77 loc) · 3.19 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
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="./css/style.css" />
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="shortcut icon" type="image/png" href="./img/favicon.png" />
<!-- SEO -->
<meta name="description" content="Ohmyfood! Réservation et composition de menus en ligne" />
<meta name="twitter:card" content="Ohmyfood! Réservation et composition de menus en ligne.">
<meta property="og:title" content="OhMyFood: Réservation et composition de menus en ligne" />
<meta property="og:type" content="website" />
<meta property="og:url" content=" https://bastien-oc20.github.io/ocr-projet3/" />
<meta property="og:description" content="Ohmyfood! Réservation de restaurants et composition de menus en ligne." />
<title>Ohmyfood | Accueil</title>
</head>
<body>
<!--header-->
<header class="logo">
<h1 class="logo__site"><a href="index.html">Ohmyfood</a></h1>
</header>
<!--main content-->
<main class="restaurant">
<!--menus des restaurant-->
<section class="restaurant__cartes">
<!--la note enchantée-->
<article class="restaurant__cartes__menu menu--note ">
<a href="./pages/la_note_enchantee.html">
<h2 class="restaurant__cartes__menu--titre"><img src="./img/note.svg" alt="note de musique">La note
enchantée</h2>
<p class="restaurant__cartes__menu--detail">Menu</p>
</a>
</article>
<!--du Chic à la francaise-->
<article class="restaurant__cartes__menu menu--chic ">
<a href="./pages/le_chic_a_la_francaise.html">
<h2 class="restaurant__cartes__menu--titre">Le chic à la française</h2>
<p class="restaurant__cartes__menu--detail">Menu</p>
</a>
</article>
<!--le délice des papilles-->
<article class="restaurant__cartes__menu menu--delice ">
<a href="./pages/le_delice_des_papilles.html">
<h2 class="restaurant__cartes__menu--titre">Le délice des papilles</h2>
<p class="restaurant__cartes__menu--detail">Menu</p>
</a>
</article>
<!--la palette du gout-->
<article class="restaurant__cartes__menu menu--gout ">
<a href="./pages/la_palette_du_gout.html">
<h2 class="restaurant__cartes__menu--titre">La palette du goût</h2>
<p class="restaurant__cartes__menu--detail">Menu</p>
</a>
</article>
</section>
<!-- prochainement -->
<aside class="restaurant__annonce ">
<h3 class="restaurant__annonce--prochainement">Prochainement</h3>
<div class="restaurant__annonce--loading">
<span></span>
<span></span>
<span></span>
</div>
</aside>
</main>
<!--footer-->
<footer class="footer">
<a href="./pages/mention_legales.html">
<p class="footer__mention">Mentions légales</p>
</a>
<a href="mailto:contact@ohmyfood.com">
<p class="footer__contact">Contactez-nous</p>
</a>
</footer>
</body>
</html>