-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcart.html
78 lines (51 loc) · 1.73 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
<!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">
<link rel="shortcut icon" href="//cdn.shopify.com/s/files/1/0399/1728/9633/files/H_Logo-01_32x32.png?v=1591028931"
type="image/png">
<title>Your Shopping Cart - Himalaya Wellness (US) </title>
<link rel="stylesheet" href="./cart.css">
<link rel="stylesheet" href="./index.css">
</head>
<body>
<!-- header start -->
<header class="header">
<div class="container">
</div>
</header>
<!-- header end -->
<!-- cart -->
<div id="cartPage">
<h1 id="HEAD"></h1>
<div id="cartLogo">
</div>
<div id="Total">
<div id="insideDiv1ID">
<a href="index.html"<p id="continueShop"> <span>
< </span> Continue Shopping </p></a>
</div>
<div id="insideDiv2ID">
<h2 class="subtotal">Subtotal <span id="subtotalspan"></span></h2>
<h1 id="grandTotal">Grand Total: <span id="subgrandtotalspan"></span></h1>
<a href=""><button id="ProceedID" >PROCEED TO CHECKOUT</button></a>
</div>
</div>
</div>
<!-- footer -->
<footer>
</footer>
</body>
</html>
<script type="module">
import { toggle, navbar, footer } from './navbar-footer.js'
// console.log(navbar)
let container = document.querySelector(".container")
container.innerHTML = navbar();
toggle()
let footerDiv = document.querySelector("footer")
footerDiv.innerHTML = footer()
</script>
<script src="./cart.js"></script>