-
Notifications
You must be signed in to change notification settings - Fork 1
/
cart.html
92 lines (87 loc) · 3.6 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
<!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</title>
<link rel="stylesheet" href="styles/cart.css">
</head>
<body>
<div class="amain">
<div class="box">
<div class="head">
<h2>My Bag <span class="countItem">3</span> Items</h1>
</div>
<div class="top">
<h5>Yay! You get FREE delivery on this order</h5>
</div>
<div class="all">
<div class="item">
<div class="details">
<div class="deta">
<h4>Men's Black Moon Knight Graphic Printed Oversized T-Shirt</h4>
<h2>₹649</h2>
<p>You saved ₹300!</p>
<select>
<option value="" select="" disabled>Size</option>
<option value="M">M</option>
<option value="L">L</option>
<option value="S">S</option>
</select>
<select>
<option value="" select="" disabled>Qty</option>
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
<option value="4">4</option>
</select>
</div>
<div class="imgbx">
<img src="https://images.bewakoof.com/t320/men-s-black-moon-knight-oversize-fit-t-shirt-522479-1659680064-1.jpg" alt="">
</div>
</div>
<div class="btnBx">
<button>Remove</button>
<button>Move to Wishlist</button>
</div>
</div>
</div>
</div>
<div class="box2">
<div class="top2">
<button>Save extra ₹80 with TriBe <span>>></span></button>
<p>Whistles! Get extra 10% Cashback on prepaid orders above Rs.699. Coupon code - OOF10.</p>
<p>Get Rs.200 instant discount on your First Purchase above Rs.999. Coupon code -NEW200</p>
<p>Whistles! Get extra 20% Cashback on prepaid orders above Rs.499. Coupon code - NEW20. Applicable for new customers only!</p>
</div>
<div class="bottom">
<div class="bot1">
<h5>PRICE SUMMARY</h5>
</div>
<p>
<span>Total MRP (Incl. of taxes) </span>
<span id="mainTotal">₹ 2248</span>
</p>
<p>
<span>Shipping Charges</span>
<span>Free</span>
</p>
<p>
<span>Bag Discount</span>
<span id="discount">₹ 1150</span>
</p>
<p>
<span>Subtotal</span>
<span id="subT">₹ </span>
</p>
<div class="btnBx2">
<h4>Total <p id="totalprice">₹ </p></h4>
<button class="place_order">Continue</button>
</div>
</div>
</div>
</div>
</body>
</html>
<script type="module" src="scripts/cart.js"></script>