-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdetail.html
More file actions
104 lines (68 loc) · 2.63 KB
/
detail.html
File metadata and controls
104 lines (68 loc) · 2.63 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
<!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" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css">
<link rel="stylesheet" href="style.css" />
<link rel="stylesheet" href="style2.css" />
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Leaftech</title>
</head>
<body>
<div class="home">
<header>
<nav>
<a href="index.html">
<img src="images\leaf tech logo.PNG" alt="" />
</a>
<ul class="right">
<li><a href="index.html">Acceuil</a></li>
<li><a href="detail.html">Produit</a></li>
<li><a href="ajout.html">Ajouter</a></li>
<li><span><a href="panier.html"> Panier</a></span></li>
<li>
<input type="checkbox" class="checkbox" id="checkbox">
</li>
</ul>
</ul>
</nav>
</header>
<section class="content" >
<div class="product-info" class="container">
<div class="imag">
<img id="img-produit" src="images\airpods.jpg" alt="image produit"/>
</div>
<div class="text-container">
<h1>Airpods Ecouteurs sans fils BLANC</h1>
<p class="price">79,99$</p>
<p>Get the lastest and trending web development project's source code, first see preview if you need then get the code.
</p>
<a href="panier.html" >panier</a>
<a href="#" >Ajouter au panier</a>
</div>
</div>
</div>
</div>
</section>
</body>
<footer class="footer">
<div class="flex-container">
<h2>Nos produits</h2>
<ul>
<li><a href="">Par catégorie</a></li>
<li><a href="">Par disponibilité</a></li>
</ul>
</div>
<div class="flex-container">
<h2>A propos</h2>
<ul>
<li><a href="">S'abonner</a></li>
<li><a href="index.html">Qui sommes nous?</a></li>
<li><a href="">Nous contacter</a></li>
</ul>
</div>
</footer>
</html>