-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcart.html
More file actions
47 lines (46 loc) · 2.76 KB
/
cart.html
File metadata and controls
47 lines (46 loc) · 2.76 KB
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
<!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">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Poppins:wght@400;500;700&display=swap" rel="stylesheet">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.1/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-iYQeCzEYFbKjA/T2uDLTpkwGzCiq6soy8tYaI1GyVh/UjpbCx/TYkiZhlZB6+fzT" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.1/dist/js/bootstrap.bundle.min.js" integrity="sha384-u1OknCvxWvY5kfmNBILK2hRnQC3Pr17a+RTT6rIHI7NnikvbZlHgTPOOmMi466C8" crossorigin="anonymous"></script>
<script src="https://kit.fontawesome.com/52378f052a.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="styles/main.css">
<link rel="stylesheet" href="styles/popup.css">
<title>Document</title>
</head>
<body>
<div class="container">
<div class="row " id="busket-wrapper">
<div class="col-4 cart-box ">
<img class="img-fluid mt-3" src="https://cdn.shopify.com/s/files/1/0284/6546/3349/products/MetalPegs3_360x.jpg?v=1599600281" alt="Product name">
<h5 class="mt-2 cart-tittle">Ultra Power 3 in 1 Laundry Liquid</h5>
<p>100$</p>
<p>1</p>
<button href="" class="btn btn-second mb-3 plus" data-id ="djdjd">+</button>
<button href="" class="btn btn-second mb-3 minus" data-id ="djdjd">-</button>
</div>
<div class="col-4 cart-box ">
<img class="img-fluid mt-3" src="https://cdn.shopify.com/s/files/1/0284/6546/3349/products/MetalPegs3_360x.jpg?v=1599600281" alt="Product name">
<h5 class="mt-2 cart-tittle">Ultra Power 3 in 1 Laundry Liquid</h5>
<p>100$</p>
<button href="" class="btn btn-second mb-3 plus" data-id ="djdjd2">+</button>
<button href="" class="btn btn-second mb-3 minus" data-id ="djdjd2">-</button>
</div>
<div class="col-4 cart-box ">
<img class="img-fluid mt-3" src="https://cdn.shopify.com/s/files/1/0284/6546/3349/products/MetalPegs3_360x.jpg?v=1599600281" alt="Product name">
<h5 class="mt-2 cart-tittle">Ultra Power 3 in 1 Laundry Liquid</h5>
<p>100$</p>
<button href="" class="btn btn-second mb-3 plus" data-id ="djdjd3">+</button>
<button href="" class="btn btn-second mb-3 minus" data-id ="djdjd3">-</button>
</div>
</div>
</div>
<script src="js/index.js"></script>
</body>
</html>