-
Notifications
You must be signed in to change notification settings - Fork 14
/
shipping.html
75 lines (66 loc) · 2.24 KB
/
shipping.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
<!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 - Delivery</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/shipping.css" />
<link rel="stylesheet" href="./styles/footer.css" />
</head>
<body>
<!-- navbar -->
<nav id="navbar"></nav>
<!-- body -->
<div id="bottom">
<h2>CHOOSE YOUR SHIPPING METHOD</h2>
<h3>IN-STORE PICK UP</h3>
<div id="store">
<p>
<input type="radio" name="delopt" />MONDAY 24, JANUARY - WEDNESDAY 26,
JANUARY
</p>
<p>FREE</p>
</div>
<h3>HOME DELIVERY</h3>
<div id="home">
<p>WEDNESDAY 26, JANUARY - MONDAY 31, JANUARY <span>290.00</span></p>
<input type="radio" name="delopt" />
<div>
<p style="color: rgb(170, 169, 169)">
TRANSPORT RESTRICTIONS MAY APPLY TO SOME AREAS
</p>
<p style="color: rgb(170, 169, 169)">
FREE SHIPPING FOR ORDERS OVER ₹ 2,990
</p>
<a href="" style="color: rgb(121, 120, 120)">DELIVERY TIME FRAMES</a>
</div>
</div>
</div>
<div id="cards">
<div>
<div id="price">TOTAL : <span>2,290.00</span></div>
<button onclick="window.location.href = 'payment.html' ">
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/shipping.js"></script>