-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathshipping.html
114 lines (94 loc) · 3.68 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
105
106
107
108
109
110
111
112
113
114
<!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>Document</title>
<link rel="stylesheet" href="./shipping page/shipping.css">
</head>
<body>
<div id="shippingmain">
<!-- left data -->
<div id="leftship">
<div><img id="shipimg" src="https://cdn.shopify.com/s/files/1/0037/7690/5283/files/logo.svg?v=1585630376" alt=""></div>
<div id="selectcat">
<div>Cart</div>
<div id="shipblack">></div>
<div>Information</div>
<div id="shipblack">></div>
<div>Shipping</div>
<div id="shipblack">></div>
<div>Payment</div>
</div>
<!-- shipping details of user -->
<div id="shipdetails">
<div id="shipdetails1">
<div id="sdiv1" >Contact</div>
<div id="sdiv3">
<div id="ssdiv1"></div>
<!-- <input type="email" id="ssdiv1" placeholder="xyz@gmail.com"> -->
</div>
<div id="sdiv2">Change</div>
</div>
<hr id="shr">
<div id="shipdetails1">
<div id="sdiv1" >Ship to</div>
<div id="sdiv3">
<div id="ssdiv2"></div>
<!-- <input id="ssdiv2" type="address" placeholder=""> -->
</div>
<div id="sdiv2">Change</div>
</div>
</div>
<!-- shipping methods -->
<div id="smethod">
<div><h2>Shipping method</h2> </div>
<div id="sfree">
<div id="ship1"><div ></div></div>
<div id="shipflex2">
<div id="ship2"> Standard Shipping </div>
<div>Free</div>
</div>
<div id="sdiv"></div>
</div>
</div>
<!-- last div -->
<div id="sinfo">
<div id="inforet"> < Return to Information </div>
<div></div>
<div><button id="sbttn" onclick="next()">Continue to payment</button></div>
</div>
<hr id="">
<div id="lastdiv">All rights reserved Vedix</div>
</div>
<!-- right data -->
<div id="ridgtdata">
<div id="showcartitems"></div>
<hr id="sshrtotal">
<div id="leftss">
<input id="leftdis"type="text" placeholder="Discount code">
<button id="apply">Apply</button>
</div>
<div id="subss">
<div>
<div id="subdiv">Subtotal</div>
<div id="shippingtotal1"></div>
</div>
<div id="shipfelx">
<div id="subdiv">Shipping</div>
<p id="ssfree">free</p>
<!-- <input id="subssint" type="text" placeholder="shipping"> -->
</div>
<hr id="sshrtotal">
<div>
<div id="subdiv" >Total</div>
<div id="shippingtotal"></div>
<!-- <input id="subssint" type="text" placeholder="Total"> -->
</div>
</div>
</div>
</div>
</body>
</html>
<script src="./shipping page/shipping.js"></script>