-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathshiping2.html
156 lines (108 loc) · 5.36 KB
/
shiping2.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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
<!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>Shipping Page</title>
<link rel="icon" href="https://www.thebowlcompany.in/wp-content/uploads/2021/12/cropped-favicon1-01-1-192x192.png" sizes="192x192">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.15.4/css/all.css"
integrity="sha384-DyZ88mC6Up2uqS4h/KRgHuoeGwBcD4Ng9SiP4dIRy0EXTlnuz47vAwmeGwVChigm" crossorigin="anonymous">
<link rel="stylesheet" href="./styles/payment.css">
<link rel="stylesheet" href="./styles/cart.css">
<link rel="stylesheet" href="./styles/address.css">
<link rel="stylesheet" href="./styles/shiping.css">
</head>
<body>
<div id="payment">
<div id="payment_right">
<img src="https://www.thebowlcompany.in/wp-content/uploads/2021/09/The-Bowl-Company-Logo.png"
id="payment_img" />
<nav>
<div id="payment_menu">
<a href="">Cart <i class="fas fa-chevron-right"></i></a>
<a href="">Information <i class="fas fa-chevron-right"></i> </a>
<a href="">Shipping <i class="fas fa-chevron-right"></i></a>
<a href="">Payment</a>
</div>
</nav>
<div id="payment_shipinfo">
<div class="mail_info" style="display: flex;">
<label for="mail_id" style="margin-right: 30px;">Contact:</label>
<div id="con"></div>
</div>
<hr>
<div class="address_info_ship" style="display: flex;">
<label for="ship_to" style=" width: 18%;">Ship to:</label>
<div id="addre"></div>
<!--
<a href="address.html">
<button id = "shipping_info1">Change</button>
</a> -->
</div>
</div>
<!-- <div id="shipMethod">
<label for="">Shiping Mehod</label><br>
<input type="radio">
</div>
-->
<div style="margin-left: 50px; margin-top: 20px; ">
<!-- <div class = "ship_meth">
<div>Shipping method</div>
<div> <button id = "shipping_info1" style="color:black; margin-left: 300px;">Free</button></div>
</div> -->
<!-- <input type = "radio" id = "standard" checked= "checked"> -->
<!-- <label for = "standard">Standard (3-5 Business Days)</label> -->
<p id="" style="font-size: 20px; line-height: 3;">Shipping Method</p>
<div id="" style="height: 50px; width: 600px; border: 2px solid #d9d9d9 ; border-radius: 5px;">
<label for="card_options4" class="radio">
<input type="radio" id="card_options4" name="card_options" class="radio__input" checked= "checked">
<div class="radio__radio"></div>
<p id="card_paymentadd">Standard (3-5 Business Days)</p>
</label>
</div>
</div>
<div id="" style="width: 80%; margin: 50px auto; ">
<!-- return to shipping -->
<a id="payment_return" href="address.html"><i class="fas fa-chevron-left" ></i>Return to
information</a>
<!-- return to shipping -->
<!-- Complete order button -->
<div id="payment_btn" style="float: right; margin-top: -30px;">
<a id="payment_complete" href="finalPayment.html" style="margin-left: -10%;">Continue Payment</a>
</div>
<!-- Complete order button -->
</div>
</div>
<div class = "checkout_box2">
<div class = "checkout2">
<p><span>Pay now and </span>SAVE 3% <span>on your order. </span>Not Valid On Gpay Discount Code</p>
<hr>
<div id="cover">
<div id="cart_display">
<p>SHOPPING BAG</p>
<div id="cart_head">
<p>ITEM</p>
<p>PRICE</p>
</div>
</div>
</div>
</div>
<!-- <p class = "points1">You have '0' points</p>
<p class = "points2">Redeem ' 1000 ' points</p>
<div>
<input id = "range" type = "range" min = "1000" max = "0">
<button id = "redeem">Redeem</button>
</div>
<div class="reward_name">You need a minimum of 1000 points to redeem.</div>
<hr>
<div class = "gift_card">
<input type = "text" id = "coupon_code" placeholder="Gift card or discount code">
<button id = "coupon_btn">Apply</button>
</div> -->
</div>
</div>
</div>
</body>
</html>
<script src="./scripts/shipping.js"></script>