-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcart.html
112 lines (107 loc) · 2.99 KB
/
cart.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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Panier</title>
<link rel="stylesheet" href="css/cart.css" />
<link rel="stylesheet" href="css/responsive.css" />
<script src="https://kit.fontawesome.com/1e6afd82c6.js" crossorigin="anonymous"></script>
<link rel="icon" type="image/jpg" href="assets/img/logo.png" />
</head>
<body>
<div class="container">
<header>
<nav class="nav-bar white-background">
<div class="background"></div>
<div class="shop-logo">
<a href="/">
<img src="assets/img/logo2.svg" alt="logo marque" />
<h1>Pear Vendor</h1>
</a>
</div>
<div class="links-menu">
<ul>
<li class="link">
<a href="/" class="selected">Accueil</a>
</li>
<li class="link sub-menu-parent">
<a href="/store.html" class="store-link">
Magasin
<i class="fa-solid fa-chevron-down"></i>
</a>
<ul class="sub-menu">
<li>
<a href="/category.html">Téléphones</a>
</li>
<li>
<a href="/category.html">Ordinateurs</a>
</li>
<li>
<a href="/category.html">Télévisions</a>
</li>
</ul>
</li>
<li class="link">
<a href="/account.html">Mon compte</a>
</li>
<li class="link">
<a href="/cart.html" class="cart-link">
<i class="fa-solid fa-cart-shopping"></i>
</a>
</li>
</ul>
</div>
</nav>
</header>
<section class="content-area">
<section class="cart-container">
<h1>Panier</h1>
<table>
<tr>
<th id="cart-product-thead">Produit</th>
<th id="cart-price-thead">Prix</th>
<th id="cart-quantity-thead">Quantité</th>
<th id="cart-subtotal-thead">Total</th>
</tr>
<tr>
<td>
<div class="cart-product-container">
<i class="fa-solid fa-xmark cross-delete-btn"></i>
<img src="assets/img/phone.png" alt="" />
<h3>Nom</h3>
</div>
</td>
<td>prix</td>
<td>
<input type="number" value="1" min="1" max="99" />
</td>
<td>prix total</td>
</tr>
</table>
<div class="cart-coupon">
<input type="text" placeholder="Coupon code" />
<a href="#" class="red-button">APPLIQUER</a>
</div>
<div class="cart-totals-price">
<div class="cart-totals-text-container">
<h2>Total panier</h2>
</div>
<div class="cart-total-flex-container">
<div class="cart-subtotals">
<h3>Totals</h3>
<h3>90.00€</h3>
</div>
<div class="cart-total">
<h3>Total</h3>
<h3>90.00€</h3>
</div>
<a href="/checkout.html" id="paiement-btn" class="red-button">Proceder au paiement</a>
</div>
</div>
</section>
</section>
</div>
</body>
</html>