-
Notifications
You must be signed in to change notification settings - Fork 0
/
article.html
59 lines (57 loc) · 2.09 KB
/
article.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Articles</title>
<link rel="stylesheet" href="bootstrap.css">
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<div>
<h6 style="font-size: 2.5rem; color: beige;"><span style="color: rgb(146, 22, 130);">S</span>ANGANA <span style="color: rgb(146, 22, 130);">B</span>EYA</h6>
</div>
<nav>
<a href="index.html">Accueil</a>
<a href="article.html">Articles</a>
<a href="contact.html">Contact</a>
<a href="apropos.html">A propos</a>
<a href="login.html">Connexion</a>
</nav>
</header>
<div class="container">
<div class="row my-3">
<div class="col-4">
<img src="img/category-3.jpg" alt="" style="width: 300px; border-radius: 8px;">
<div>
<h5 style="color: white;">Prix: 15$</h5>
</div>
<div style="margin-top: 20px;">
<a href="achat.html" class="btn_achat">Achat</a>
</div>
</div>
<div class="col-4">
<img src="img/gallery-2.jpg" alt="" style="width: 300px; border-radius: 8px;">
<div>
<h5 style="color: white;">Prix: 10$</h5>
</div>
<div style="margin-top: 20px;">
<a href="achat.html" class="btn_achat">Achat</a>
</div>
</div>
<div class="col-4">
<img src="img/product-8.jpg" alt="" style="width: 300px; border-radius: 8px;">
<div>
<h5 style="color: white;">Prix: 50$</h5>
</div>
<div style="margin-top: 20px;">
<a href="achat.html" class="btn_achat">Achat</a>
</div>
</div>
</div>
</div>
<script src="bootstrap.bundle.js"></script>
<script src="bootstrap.js"></script>
</body>
</html>