forked from Rohit27698/carver_Clone
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcart.html
61 lines (57 loc) · 2.33 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
<!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>cart page</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"
integrity="sha512-SfTiTlX6kk+qitfevl/7LibUOeJWlt9rbyDn92a1DqWOw9vWG2MFoays0sgObmWazO5BQPiFucnnEAjpAB+/Sw=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="cart.css">
</head>
<body style="font-family: 'Noto Sans TC', sans-serif;">
<button onclick="showMyCart()">Cart</button>
<div class="nykkacart nykaaoverlay"></div>
<div class="nykkacart nykaacartdiv" id="nykaacartdiv">
<div class="nykaacartinnerdiv">
<div class="parent">
<div style="display: flex; justify-content: space-between;">
<div style="display: flex;">
<div onclick=" showMyCart()"> <img src="arrow-img.png" alt="" style="width: 35px; cursor: pointer;"></div>
<h2>Bag<span id="per"></span></h2>
</div>
<div>
</div>
</div>
</div>
<hr>
<div id="child">
<img class="emptycartimage" src="empty-cart-img.PNG" alt="Cart image" />
<div style="color: black; font-weight: bold; font-size: 22px; padding: 0 50px;">Your Shopping Bag is Empty</div>
<div style="color: black; font-weight: normal; font-size: 16px; padding: 15px 50px;">This feels too light! Go on,
add all your favourites</div>
<div>
<button onclick="showMyCart()"
style="cursor: pointer; padding: 15px 60px; border-radius: 10px; border: 1px solid rgb(0, 0, 0); background-color: rgb(28, 25, 27); color: white; font-size: 16px; font-weight: bold;">Start
Shopping</button>
</div>
</div>
<div id="bagItems"></div>
<div id="grandTotalParent">
<hr>
<div id="gandTotal">
<div id="totalprice">
<div style="color: rgb(0, 19, 37); font-size: 15px;">SUBTOTAL</div>
<div style="color: rgb(68, 64, 64); font-weight: bold; font-size: 20px;">$<span id="grandTotalPrice">0</span> </div>
</div>
<div id="checkoutBtn">
<button id="checkout">CHECKOUT</button>
</div>
</div>
</div>
</div>
</div>
<script src="cart.js"></script>
</body>
</html>