-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathservices.html
93 lines (86 loc) · 3.52 KB
/
services.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Le coiffeur</title>
<!-- CSS reset -->
<link rel="stylesheet" href="https://meyerweb.com/eric/tools/css/reset/reset.css">
<!-- global -->
<link rel="stylesheet" href="css/global.css">
<!-- pour la page -->
<link rel="stylesheet" href="css/services.css">
<!-- Navbar -->
<link rel="stylesheet" href="css/navbar.css">
<link rel="stylesheet" href="css/index.css">
</head>
<body>
<header>
<!-- navbar -->
<nav>
<!-- icone -->
<a href="index.html" title="accueil" id="icone">
<img src="img/icone/icone.svg" alt="icone du Coiffeur">
</a>
<!-- menu burger -->
<img src="img/icone/burger_menu.svg" alt="menu burger">
<!-- liens -->
<ul>
<li><a href="services.html">Nos services</a></li>
<li><a href="contact.html">Nous contacter</a></li>
<li>
<!-- Panier -->
<div class="dropdown">
<div id="cart">
<p><span id="in-cart-items-num">0</span> Articles</p>
</div>
<ul id="cart-dropdown" hidden>
<li id="empty-cart-msg"><a>Votre panier est vide</a></li>
<li class="go-to-cart hidden"><a href="panier.html">Voir le panier</a></li>
</ul>
</li>
</div>
</ul>
</nav>
</header>
</head>
<main>
<button id="btn">Afficher nos services</button>
<section id="container">
<section id="1">
<button type="button" class="add-to-cart" data-id="1" data-name="Coupe homme" data-description="coupe simple homme" data-price="20,00">Ajouter au panier</button>
</section>
<section id="2">
<button type="button" class="add-to-cart" data-id="2" data-name="Coupe femme" data-description="coupe simple femme" data-price="25,00">Ajouter au panier</button>
</section>
<section id="3">
<button type="button" class="add-to-cart" data-id="3" data-name="Coupe enfant" data-description="coupe simple enfant" data-price="15,00">Ajouter au panier</button>
</section>
</section>
</main>
<!-- footer -->
<footer id="footer">
<!-- adresse -->
<section>
<p>20 rue de Victor Hugo</p>
<p>75000 Paris</p>
<p>01.00.00.00.00</p>
</section>
<!-- Réseaux sociaux -->
<section>
<a></a>
<a></a>
<a></a>
</section>
<!-- Mentions -->
<section id="mentions">
<span>Copyright 2021 Le Coiffeur</span>
<a href="https://fr.wikipedia.org/wiki/Mentions_l%C3%A9gales">Mentions légales</a>
</section>
</footer>
<!-- JS global -->
<script src="js/produits.js"></script>
<script src="js/panier.js"></script>
</body>
</html>