forked from krajeet35/Project--miscreant-punishment-3547
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcart.html
70 lines (67 loc) · 2.95 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
<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>Sepphora/mybag</title>
<link rel="stylesheet" href="./styles/cart.css">
</head>
<body>
<div id="navbag">
<div>
<a href="index.html"><img src="https://cdn07.nnnow.com/web-images/master/navtree_metaData/59b2657be4b0e6b6e16a9180/1548053082431/se.png" alt="Sepphora"></a>
</div>
<div class="dropmenu">
<div class="menubar"><p>User</p></div>
<div class="seconddrop">
<a href="account.html"><img src="https://i.ibb.co/Z2L3KCx/user.png" alt="login">My Account</a>
<a href="wishlist.html"><img src="https://i.ibb.co/Hqh4zqT/heart.png" alt="wishlist">Favourites</a>
<a href="orders.html"><img src="https://i.ibb.co/J3Mr8YY/bag.png" alt="cart">My Orders</a>
<hr>
<a href="index.html"><img src="https://ywcaspokane.org/wp-content/uploads/2016/05/YWCA_Escape_Button.png" alt="sign out">Sign Out</a>
</div>
</div></div>
<div id="navbag2">
<h2 id="totalbagcount"></h2>
</div>
<div id="navbag3">
<div id="leftnavbag3">
</div>
<div id="rightnavbag3">
<div id="firstrightarrrow">
<img src="https://static.nnnow.com/client/assets/images/promotions/icon_promo.png" alt="promo code">
<h3>APPLY PROMO CODE</h3>
</div>
<div id="secondrightarrow">
<h2>OVERVIEW</h2>
<div>
<div><p>Subtotal</p></div>
<div><p>Rs.</p><p id="bagsubtotal"></p></div>
<div><p>Discount</p></div>
<div><p>-Rs.</p><p id="bagdiscount"></p></div>
<div><p>GST</p></div>
<div><p>Rs.</p><p id="baggst"></p></div>
<div>Delivery Charges</div>
<div><p>Rs.</p><p id="bagdelivery"></p></div>
<div><h3>Total</h3></div>
<div><h3>Rs.</h3><h3 id="bagtotal"></h3></div>
</div>
</div>
<div id="thirdrightarrow">
<div id="checkoutdata"><a href="#">CHECKOUT</a></div>
<div><a href="index.html">SHOP MORE</a></div>
<img src="https://static.nnnow.com/mybag_offer_banner.jpg" alt="yono sbi">
</div>
</div>
</div>
<div class="cartpopup1">
<h1>Apply / Select promo code</h1>
<div class="close_button1">×</div>
<div>
<input type="text" id="promocodevalue" placeholder="Enter Promo">
<img id="submitpromo" src="https://static.nnnow.com/client/assets/images/promotions/go_back_btn.png" alt="arrow">
</div>
</div>
</body>
</html>
<script src="./scripts/cart.js"></script>