-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpanier.html
30 lines (27 loc) · 1.02 KB
/
panier.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Créer un site e-commerce</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.13.0/css/all.css" />
</head>
<body>
<!-- Barre de navigation -->
<nav>
<div class="logo">
<img src="images/logo.png" width="125px">
</div>
<div class="onglets">
<p class="link"><a href="nouveautés.html">Nouveautés</a></p>
<p class="link"><a href="boards.html">Boards</a></p>
<p class="link"><a href="nous_contacter.html">Nous Contacter</a></p>
<form>
<input type="search" placeholder="Rechercher">
</form>
<a href="likés.html"><button> <p><i class="far fa-heart"></i></p></button></a>
<a href="panier.html"><button> <p><i class="fas fa-shopping-cart"></i></p></button></a>
</div>
</nav>
<!-- Fin de la barre de navigation -->