-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathmybag.html
71 lines (66 loc) · 2.22 KB
/
mybag.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
<!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="mybag.css">
</head>
<body>
<!-- first navbar -->
<div id="mybagnav">
<div id="brandname">
<div id="img-cnt-clickable">
<img src="https://cdn07.nnnow.com/web-images/master/navtree_metaData/59b2657be4b0e6b6e16a9180/1548053082431/se.png" alt="">
</div>
</div>
<div id="logindetails">
<p id="logindetailsp"></p>
</div>
</div>
<!-- first navbar -->
<!-- second navbar -->
<div id="simplenav">
<div>
<h3 id="mybagcount">MY BAG <span id="numberofproducts"></span></h3>
</div>
</div>
<!-- second navbar -->
<!-- prod and checkout container -->
<div id="prodandcheck">
<!-- list the items inside this -->
<div id="prodlist">
</div>
<!-- list the items inside this -->
<!-- promo and total box -->
<div id="promoanssum">
<div id="promocode">
<input type="text" id="couponint" placeholder="Enter Promo code">
<button id="couponbut">Check</button>
</div>
<div id="ordersummary">
<H4>OVERVIEW</H4>
<DIV id="box1">
<Label id="lab">Subtotal</Label>
<span id="priceshow"></span>
</DIV>
<div id="box1">
<label id="lab2">Discount</label>
<span id="afterdiscountprice">0</span>
</div>
<hr>
<div id="box2">
<label for="">Total</label>
<span id="finalprice2">Rs.<span id="finalprice">0</span></span>
</div>
</div>
<button id="checkoutbutton">CHECKOUT</button>
</button>
</div>
<!-- promo and total box -->
</div>
<!-- prod and checkout container -->
</body>
</html>
<script src="mybag.js"></script>