forked from Adrien140401/ProjectWeb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
92 lines (84 loc) · 3.38 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Better Humanity</title>
<meta name="viewport" content="width-device-width, initial-scale=1">
<link rel="stylesheet" href="/style/style.css">
<link rel="stylesheet" type="text/css"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css" >
</head>
<body>
<header>
<div class="betterhumanity"><a href="index.html">Better Humanity</a></div>
<nav>
<ul class="nav-links">
<li><a href="index.html">Acceuil</a></li>
<li><a href="produits.html">Produits</a></li>
<li><a href="login.html">LOGIN</a></li>
<li><a href="profil.html">Profil</a></li>
<li><a href="cart.html">SHOPPING CART</a></li>
</ul>
</nav>
<a class="contact" href="contactpage.html"><button>Contact</button></a>
</header>
<section class="main">
<div class="titleContainer">
<h1>New Sneakers released!</h1>
</div>
<div class="containerShoes">
<div class="shoe1">
<img src="folder.img/shoe2-2/img1.png" width="500px">
</div>
</div>
<div class="underShoesTitles">
<h3>Air Max 95 New Edition</h3>
<h1>STYLE.ELEGANCE.PERFORMANCE</h1>
<h3 id="descriptionUnderTitle">Testée, conçue et créée pour vous permettre de continuer à courir</h3>
<a class=" contact" href="#"><button>Acheter</button></a>
</div>
</section>
<div class="footer">
<div class="container">
<div class="row">
<div class="footer-col">
<h4>compagnie</h4>
<ul>
<li><a href="#">à propos</a></li>
<li><a href="#">nos services</a></li>
<li><a href="#">politique privée</a></li>
<li><a href="#">programmes associés</a></li>
</ul>
</div>
<div class="footer-col">
<h4>aide</h4>
<ul>
<li><a href="#">FAQ</a></li>
<li><a href="#">shipping</a></li>
<li><a href="#">retours</a></li>
<li><a href="#">status</a></li>
<li><a href="#">options de paiement</a></li>
</ul>
</div>
<div class="footer-col">
<h4>boutique en ligne</h4>
<ul>
<li><a href="#">nos produits</a></li>
</ul>
</div>
<div class="footer-col">
<h4>réseaux</h4>
<div class="social-links">
<a href="https://fr-fr.facebook.com/"><i class="fab fa-facebook-f"></i></a>
<a href="https://twitter.com/login"><i class="fab fa-twitter"></i></a>
<a href="https://www.instagram.com/?hl=fr"><i class="fab fa-instagram"></i></a>
<a href="https://fr.linkedin.com/"><i class="fab fa-linkedin-in"></i></a>
</div>
</div>
</div>
</div>
</div>
</footer>
</body>
<script src="/script/app.js"></script>
</html>