forked from optimizershivam/Bluefly-webapp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathshipping.html
104 lines (88 loc) · 3.56 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
<!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="stylesheet" href="" />
<title>Document</title>
<link rel="stylesheet" href="http://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.4.0/css/font-awesome.min.css">
<script src="https://kit.fontawesome.com/4eeb94ebc8.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="style/shipping.css">
</head>
<body>
<div id="shippingitem">
<div id="shippingitemDetails">
<a href="#" class="sitelogo">
<img src="https://cdn.shopify.com/s/files/1/0248/3473/6191/files/BLUEFLY-LOGO-11-20.png?180517" alt=""
width="40%" height="40px">
</a>
<div id="siteicons">
<a href="cart.html">Cart</a>
<i class="fa-solid fa-chevron-right"></i>
<a href="checkout.html">Information</a>
<i class="fa-solid fa-chevron-right"></i>
<a href="shipping.html">Shipping</a>
<i class="fa-solid fa-chevron-right"></i>
<a href="payment.html">Payment</a>
</div>
<div id="shippingAdd">
<div class="contactInfo">
<div class="contact">Contact</div>
<div id="email" style="margin-left:30px;"></div>
<a href="checkout.html">
<span>Change</span>
</a>
</div>
<hr>
<div class="shippInfo">
<div class="shipto">ship to</div>
<div id="address"></div>
<a href="checkout.html">
<span>Change</span>
</a>
</div>
</div>
<div id="shippingMethod">
<h2>Shipping method</h2>
<div class="free">
<input type="radio" id="standard" value="Standard">
<label for="standard">
<span>Standard</span>
<span id="free" style="float:right;">free</span>
</label>
</div>
</div>
<div class="ContinuetoPayment">
<a href="checkout.html">
<i class="fa-solid fa-chevron-left" style="color: black;"></i>
<span id="againCart">Return to information</span></a>
<a href="payment.html">
<button id="ToShipping">Continue to payment</button>
</a>
</div>
</div>
<hr>
<!-- <div id="SelectedItems"></div> -->
<div id="userCartinfo">
<div id="insidecart">
<div id="one"> </div>
</div>
<div id="two">
<input type="text">
<button>apply</button>
</div>
<div id="three">
<div class="sub">
<h4>Subtotal</h4> <h4 id="sub">0</h4>
</div>
<div class="ship">
<h4>Shipping</h4> <h4>Free</h4>
</div>
</div>
<div id="four"> <h4>Total</h4> <h1 id="tota">0</h1></div>
</div>
</div>
<!-- new added -->
</body>
<script src="scripts/shipping.js" type="module"></script>