-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcartpage.html
More file actions
72 lines (58 loc) · 2.06 KB
/
Copy pathcartpage.html
File metadata and controls
72 lines (58 loc) · 2.06 KB
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
<!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>Document</title>
<link rel="stylesheet" href="./css/navbar.css">
<link rel="stylesheet" href="./css/footer.css">
<link rel="stylesheet" href="./css/cartpage.css">
</head>
<body>
<div class="navbar__container"></div>
<div id="twocontainer">
<div>
<div id="first_box">
<h1>MY BAG</h1>
<p>Items are reserved for 60 mintues</p>
</div>
<div id='item_append'></div>
<div id=last_box>
<h3>SUB-TOTAL<span id = 'subpricebelow'></span></h3>
</div>
</div>
<div id="total_container">
<div id="totalcontainer">
<h2>TOTAL</h2>
<hr>
<div id="price_flex">
<h4>Sub-total </h4>
<h3 id="total-p"></h3>
</div>
<div id="disc">
</div>
<div id="realp">
<h3 id="realprice"></h3>
<h3 id="totalr"></h3>
</div>
<div id="coupon_flex">
<input id="promo" type="text" placeholder="APPLY ASOS30">
<button id="Apply">APPLY</button>
</div>
<hr>
<a href="../payment.html"><button id=checkout>PAY NOW</button></a>
<h4>WE ACCEPT</h4>
<div id="acceptpay">
<img
src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTPObq3geMYUM5tBp5bYZ4ellfEFNHuYVk-E4xVXTFOC8m2iNyjRIPwpwaKAhSt7dF9kA&usqp=CAU" />
</div>
<p id=paradis>Got a discount code? Add it in the next step</p>
</div>
</div>
</div>
<div id = 'footer'></div>
</body>
</html>
<script type = 'module' src="./js/cartpage.js">
</script>