-
Notifications
You must be signed in to change notification settings - Fork 0
/
achat.html
63 lines (59 loc) · 2.55 KB
/
achat.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Login</title>
</head>
<body>
</body>
</html><!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact</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>
<section style="display: flex; justify-content: center;">
<div style="width: 30%; border: 1px solid black; border-radius: 5px; margin-top: 20px; background-color: rgba(240, 255, 255, 0.534);">
<form action="">
<h3 style="text-align: center; margin: 30px;">Achat</h3>
<div style="margin: 20px 40px; display: flex; justify-content: space-between;">
<label for="">Quatite</label>
<input type="number" style="border: 1px solid rgb(18, 75, 75); padding: 5px; outline: none; border-radius: 5px;">
</div>
<div style="margin: 20px 40px; display: flex; justify-content: space-between;">
<label for="">Moyen de paiement</label>
<select name="" id="" style="border: 1px solid rgb(18, 75, 75); padding: 5px; outline: none; border-radius: 5px; width: 190px;">
<option value="">M-pesa</option>
<option value="">Orange Money</option>
<option value="">Airtel Money</option>
<option value="">Master Card</option>
<option value="">Visa</option>
</select>
</div>
<div style="margin: 20px 40px; display: flex; justify-content: center;">
<input type="submit" style="padding: 10px 20px;" value="Achat">
</div>
</form>
</div>
</section>
<script src="bootstrap.bundle.js"></script>
<script src="bootstrap.js"></script>
</body>
</html>