-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexemple.html
More file actions
33 lines (33 loc) · 877 Bytes
/
exemple.html
File metadata and controls
33 lines (33 loc) · 877 Bytes
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
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>OnlineShop - Accueil</title>
</head>
<body>
<header>
<a href="./index.html">
<img alt="logo" src="./assets/img/logo.svg" title="Accueil">
</a>
<nav>
<ul>
<li><a href="./index.html">Accueil</a></li>
<li><a href="./products.html">Produits</a></li>
<li><a href="./contact.html">Contact</a></li>
<li><a href="./shopping-cart.html">Panier</a></li>
</ul>
</nav>
</header>
<main>
<article>
<h1>Le site n°1 pour les achats en ligne!</h1>
<img alt="home" src="./assets/img/home.png" id="home-img">
<p>Découvrez nos différents produits au meilleur prix.</p>
<a class="btn" href="./products.html">En savoir plus</a>
</article>
</main>
<footer>
<p>Par Amal Ben Abdellah</p>
</footer>
</body>
</html>