-
Notifications
You must be signed in to change notification settings - Fork 14
/
summary.html
55 lines (46 loc) · 1.64 KB
/
summary.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
<!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>Process Order - Summary</title>
<link
href="https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Karla:wght@200;300&family=Mulish:wght@200;400&family=PT+Sans&family=Pacifico&family=Shizuru&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="./styles/navbar.css" />
<link rel="stylesheet" href="./styles/summay.css" />
<link rel="stylesheet" href="./styles/footer.css" />
</head>
<body>
<!-- navbar -->
<nav id="navbar"></nav>
<div id="main">
<div id="left"></div>
<div id="right"></div>
</div>
<div id="cards">
<div id="check">
<input id="check" type="checkbox">
<span>I ACCEPT THE <u>TERMS OF PURCHASE</u> AND <u>PRIVACY POLICY</u></span>
</div>
<div id="pr">
<div id="price">TOTAL : <span>2,290.00</span></div>
<button id="done">CONTINUE</button>
</div>
</div>
<div id="footer"></div>
</body>
</html>
<script type="module">
let total = JSON.parse(localStorage.getItem("total"));
document.getElementById("price").innerHTML = `TOTAL : <span>${total}</span>`;
import navbar from "./components/navbar.js";
let nav = document.getElementById("navbar");
nav.innerHTML = navbar();
import { footers } from "./components/footer.js";
let footer = document.getElementById("footer");
footer.innerHTML = footers();
</script>
<script src="./scripts/summary.js"></script>