-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
117 lines (87 loc) · 3.18 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
<!DOCTYPE html>
<html lang="fr">
<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="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.2/css/all.min.css%22%3E">
<script src="https://kit.fontawesome.com/5f23591254.js" crossorigin="anonymous"></script>
<title>ARNGREN</title>
<link rel="icon" type="image/x-icon" href="media/favicon-16x16.png">
</head>
<body>
<!-- Navbar -->
<nav>
<h1><img src="https://www.arngren.net/Cutout_2.gif">
ARNGREN Electronics</h1>
<div class="onglets">
<p class="link">Achat</p>
<p class="link">Vente</p>
<a href="contact.html"><p class="link">Contact</p></a>
<form>
<input type="search" placeholder="Rechercher">
</form>
<p><i class="fa-solid fa-heart"></i></p>
<p><i class="fa-solid fa-cart-shopping"></i></p>
</div>
</nav>
<!--fin de la navbar-->
<!--header-->
<header>
<h1>Plateforme Achat Revente</h1>
<button>Naviguer<i class="fa-solid fa-paper-plane-top"></i></button>
</header>
<!--Header-->
<!--section principale-->
<section class="main">
<!--Toute les cartes-->
<div class="cards">
<div class="jojo">
<img src="media/535x535(1).jpg" alt="">
<div class="card-header">
<h4 class="title">Range Rover p38</h4>
<h4 class="price">4000 €</h4>
</div>
<div class="card-body">
<p>4x4 boite auto</p>
</div>
</div>
<div class="jojo">
<img src="media/jeep535x535d (1).jpg" alt="">
<div class="card-header">
<h4 class="title">Range Rover Sport HSE</h4>
<h4 class="price">9000 €</h4>
</div>
<div class="card-body">
<p>4x4 boite méca</p>
</div>
</div>
<div class="jojo">
<img src="media/last 535x535(1).jpg" alt="">
<div class="card-header">
<h4 class="title">Range rover Classic</h4>
<h4 class="price">7000 €</h4>
</div>
<div class="card-body">
<p>4x4 boite deep</p>
</div>
</div>
</div>
</div>
</section>
<iframe width="560" height="315" src="https://www.youtube.com/embed/vtfxQn7yfvY" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
<!-- Pied de page -->
<div id="footer">
<p>© Contactez-nous au 00 00 00 00 00</p>
<div class="social-media">
<p><i class="fab fa-facebook-f"></i></p>
<p><i class="fab fa-twitter"></i></p>
<p><i class="fab fa-instagram"></i></p>
<p><i class="fab fa-linkedin-in"></i></p>
</div>
</div>
<!-- Fin du pied de page -->
<!--fin section principale-->
</body>
</html>