This repository was archived by the owner on Jan 7, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
113 lines (111 loc) · 6 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
<!DOCTYPE html>
<html lang="fr">
<head>
<!-- HTML Settings -->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Notre trattoria vous propose les meilleurs plats maisons de toute l'Italie. Nous vous attendons !">
<meta name="Trattoria San Pietro">
<meta name="keywords" content="San Pietro, trattoria, food, Italia">
<title>San Pietro trattoria</title>
<!-- CSS styles -->
<link rel="stylesheet" href="./assets/css/style.css">
<!-- JS scripts -->
<script src="./assets/js/index.js" defer></script>
</head>
<body>
<header>
<nav>
<span id="brand-logo">San Pietro</span>
<ul>
<li><a href="#landing">Accueil</a></li>
<li><a href="#informations">Carte</a></li>
<li><a href="#services">Service</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</header>
<main>
<section id="landing">
<h1>San Pietro</h1>
<div>
<a type="button" href="#contact">Nous Trouver</a>
</div>
</section>
<section id="informations">
<article id="menu">
<h2>Notre Carte</h2>
<div class="dish-type">
<h3>Entrées</h3>
<img src="./assets/images/bruschetta-4282898_1920.jpg" alt="Bruschetta">
<p class="dish">
<span class="dish-name">Carpaccio de Bresaola</span>
<span class="dish-price">8</span>
</p>
<p class="dish">
<span class="dish-name">Bruschetta Italienne</span>
<span class="dish-price">9</span>
</p>
<p class="dish">
<span class="dish-name">Antipasto a l'Italienne</span>
<span class="dish-price">10</span>
</p>
</div>
<div class="dish-type">
<h3>Plats</h3>
<img src="./assets/images/osso-bucco-2535546_1920.jpg" alt="Osso bucco">
<p class="dish">
<span class="dish-name">Pizza Napolitaine</span>
<span class="dish-price">12</span>
</p>
<p class="dish">
<span class="dish-name">Osso Bucco</span>
<span class="dish-price">14</span>
</p>
<p class="dish">
<span class="dish-name">Escalope Milanaise</span>
<span class="dish-price">16</span>
</p>
</div>
<div class="dish-type">
<h3>Desserts</h3>
<img src="./assets/images/tiramisu-4098241_1920.jpg" alt="Tiramisu">
<p class="dish">
<span class="dish-name">Pana Cotta</span>
<span class="dish-price">6</span>
</p>
<p class="dish">
<span class="dish-name">Tiramisu</span>
<span class="dish-price">8</span>
</p>
<p class="dish">
<span class="dish-name">Zuccotto</span>
<span class="dish-price">10</span>
</p>
</div>
</article>
<article id="services">
<h2>Nos Services</h2>
<img class="services-element" src="./assets/images/pizza-5349414_1920.jpg" alt="Pâte à pizza pétrie à la main.">
<div class="services-element">Toutes nos préparations sont réalisées sur place.</div>
<img class="services-element" src="./assets/images/market-3916964_1920.jpg" alt="Marché local de produits frais.">
<div class="services-element">Nos aliments sont frais, locaux, et sélectionnés avec soin.</div>
<img class="services-element" src="./assets/images/waiter-5513560_1920.jpg" alt="Accueil et service agréables et de qualité.">
<div class="services-element">Accueil et service agréables et de qualité.</div>
</article>
<article id="contact">
<h2>Nous Contacter</h2>
<address>
<span><img class="icon" src="./assets/icons/identity.svg" alt="Nom du restaurant"> <a href="#">Trattoria San Pietro</a></span>
<span><img class="icon" src="./assets/icons/location.svg" alt="Adresse"> <a href="https://maps.app.goo.gl/hyagcNCWLkrSqX6i8">Via S. Pietro, 95, 35139 Padova PD, Italie</a></span>
<span><img class="icon" src="./assets/icons/call.svg" alt="Numéro de téléphone"> <a href="tel:+390498760330">+390498760330</a></span>
</address>
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2800.992839380861!2d11.866483711030693!3d45.409483970952344!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x477edbf88b8786cf%3A0xb504fae67ec7faa0!2sTrattoria%20San%20Pietro!5e0!3m2!1sfr!2sfr!4v1706872760810!5m2!1sfr!2sfr" width="600" height="450" style="border:0;" allowfullscreen="" loading="lazy" referrerpolicy="no-referrer-when-downgrade"></iframe>
</article>
</section>
</main>
<footer>
Designed by <a href="https://www.jdedev.fr/index.html">JdeDev</a>, 2021.
</footer>
</body>
</html>