-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
80 lines (71 loc) · 4.02 KB
/
contact.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Life Fitness | Contact</title>
<link rel="stylesheet" href="style.css"/>
<link href="https://fonts.googleapis.com/css2?family=Merriweather+Sans&family=Poppins:wght@300;400;500;600;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css" />
</head>
<body>
<div class="container">
<div class="navbar">
<div class="logo">
<a href="index.html"><img src="images/logo-life-fitness.png" width="125px"></a>
</div>
<nav>
<ul id="MenuItems">
<li><a href="index.html">Accueil</a></li>
<li><a href="products.html">Produit</a></li>
<li><a href="">À propos</a></li>
<li><a href="#">Contact</a></li>
<li><a href="account.html">Compte</a></li>
</ul>
</nav>
<a href="cart.html"><img src="images/cart.png" width="30px" height="30px"></a>
<img src="images/menu.png" class="menu-icon"
onclick="menutoggle()">
</div>
<img src="images/contact.jpg" style="width: 119%;height: 450px; margin-left: -120px;">
<section class="contact">
<div class="content" style="margin-left: 50px; margin-top: 30px;">
<h2 style="color: black;margin-left: 25%;">CONTACTEZ-NOUS POUR TOUTE QUESTION</h2>
<hr style="width: 110px; height: 3px; border: none; background: #ff523b; margin-left: 42%;">
<p style="text-align: center; margin-top: 30px; color: #000; margin-left: -6%;">Des passionnés de sport qui ont réponse à toutes vos questions. Nous avons pour mission de vous conseiller sur les produits et services qu’offre Decathlon Tunisie. Contactez-nous, on veut connaître votre sport favori et qui sait, peut-être vous en faire découvrir de nouveaux!.</p>
</div>
</section>
<div class="container2" style="margin-left: 20%;margin-top: 150px;">
<div class="contact Info">
<div class="box">
<div class="icon" style="display: flex; margin-bottom: -18px;"><i class="fa-solid fa-location-dot"></i></div>
<div class="text" style="display: block; margin-left: 40px; margin-top: -20px;">
<p>Manouba 2011</p>
</div>
</div>
</div>
<div class="box">
<div class="icon" style="display: flex; margin-bottom: -15px; margin-top: 40px;"><i class="fa-solid fa-phone"></i></div>
<div class="text" style="display: block; margin-left: 40px; margin-top: -20px;">
<p>231 55 121</p>
</div>
</div>
<div class="box">
<div class="icon" style="display: flex; margin-bottom: -15px; margin-top: 45px;"><i class="fa-solid fa-envelope"></i></div>
<div class="text" style="display: block; margin-left: 40px; margin-top: -20px;">
<p>aziz30mejri@gmail.com</p>
</div>
</div>
<form style="margin-left: 40%; margin-top: -20%; background-color: #F1F1F1; height: auto; width: auto;">
<input type="text" style="width: 250px; margin-left: 5%;" placeholder="Nom">
<input type="text" style="width: 250px; margin-left: 5%;" placeholder="Prénom"> <br>
<input type="" style="width: 250px; margin-left: 5%;" placeholder="Adresse e-mail"> <br>
<input type="text" style="width: 250px; margin-left: 5%;" placeholder="Message">
</form>
</div>
</div>
</div>
</div>
</div>
</body>
</html>