-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlist-product.html
70 lines (58 loc) · 2.18 KB
/
list-product.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Urunler</title>
<link rel="stylesheet" href="checkout.css">
</head>
<body >
<div class="bodychekout">
<div class="containerchekout">
<header class="unanamed">
<h1>ÜRÜNLER</h1>
<div class="iconCart">
<img src="/icon.png">
<div class="totalQuantity">0</div>
</div>
</header>
<div class="listProduct">
<div class="item">
<img src="https://img.freepik.com/photos-gratuite/kiwi-frais-isole_144627-30034.jpg?size=626&ext=jpg&ga=GA1.1.1278914853.1685783879&semt=sph" alt="">
<h2>CoPilot / Black / Automatic</h2>
<div class="price">$550</div>
<button>Add To Cart</button>
</div>
</div>
</div>
<div class="cart">
<h2>
CART
</h2>
<div class="listCart">
<div class="item">
<img src="https://img.freepik.com/photos-premium/mandarine-orange-feuille-verte-isole-fond-blanc_104337-5736.jpg?w=740">
<div class="content">
<div class="name">CoPilot / Black / Automatic</div>
<div class="price">$550 / 1 product</div>
</div>
<div class="quantity">
<button>-</button>
<span class="value">3</span>
<button>+</button>
</div>
</div>
</div>
<div class="buttons">
<div class="close">
CLOSE
</div>
<div class="checkout">
<a href="checkout.html">CHECKOUT</a>
</div>
</div>
</div>
</div>
<script src="app.js"></script>
</body>
</html>