-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcart1.html
42 lines (38 loc) · 1.2 KB
/
cart1.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Cart</title>
<link rel="icon" type="image/png" href="images/shopclues icon.png">
<link rel="stylesheet" href="styles/cart1.css">
</head>
<body>
<div class="header">
<img class="arrow" src="images/back_112351.png" alt="">
<img class="headerImg" src="https://images.shopclues.com/images/ui/shopclues_logo@2x.png" alt="">
</div>
<div class="pDiv">
<div>
<h2>My Cart</h2>
</div>
<div class="productsDiv">
</div>
</div>
<div class="grandTotalDiv">
<div class="locationDiv">
<img src="images/location.png" alt="" class="locationImg">
<div class="delivery">
<p>Delivery Pincode</p>
<span>400019 <a class="locationChange">Change</a></span><br><br>
</div>
</div>
<div id="promobox">
<input type="text" id="promo" placeholder="Enter Coupon Code">
<button id="promobtn">Get off</button>
<h5 id="disc"></h5>
</div>
<div class="GTotalDiv">
</div>
</div>
</body>
</html>
<script src="scripts/cart1.js"></script>