forked from aakarsh604/Gearbest-Clone
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathshipping.html
99 lines (90 loc) · 2.99 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
<!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="./styles/shipping.css">
<title>Shipping Page | Gearbest.com</title>
<link rel="shortcut icon" href="https://img.ecommercedb.com/gearbest.com-75ioegxvb6cx.png" type="image/x-icon">
</head>
<body>
<div id="top-sec">
<img id="logo" src="https://uidesign.gbtcdn.com/GB/images/promotion/2019/a_evan/Gearbest/logo_gearbest.png?imbypass=true" alt="logo">
</div>
<h2 id="heading">Shipping Information</h2>
<div id="Omain">
<div>
<p >Name : </p>
<p > Address Line 1 : </p>
<p > Address Line 2 : </p>
<p >City : </p>
<p >Zip/Postal Code : </p>
<p >Phone Number : </p>
<p > E-mail Address : </p>
</div>
<div id="details">
<p id="name">Name : </p>
<p id="addone"> Address Line 1 : </p>
<p id="addtwo"> Address Line 2 : </p>
<p id="city">City : </p>
<p id="pin">Zip/Postal Code : </p>
<p id="mobile">Phone Number : </p>
<p id="email"> E-mail Address : </p>
</div>
<div id="Omain2">
<div id="Ob1">
<Button id="Obu">Edit Shipping Address</Button>
</div>
</div>
</div>
<div>
<div id="Osec">
<div id="ApplyC">
<div id="UseC">
Use Coupon
</div>
<div id="SecU">
<input type="text" id="Osearch" placeholder="Apply Coupon here"><button id="applybtn">Apply</button>
</div>
</div>
<div id="OSD">
<div>
<P>Item Sub total : </P>
<p id="subtotal"></p>
</div>
<div>
<P>GB Points Discount : </P>
<p>₹0.00</p>
</div>
<div>
<P>Coupon : </P>
<p id="coup">₹0.00</p>
</div>
<div>
<P>Shipping Cart : </P>
<p>₹0.00</p>
</div>
<div>
<P>Insurance : </P>
<p>₹0.00</p>
</div>
<div>
<P>Promotion : </P>
<p>₹0.00</p>
</div>
<div>
<P>Payment Discount : </P>
<p>₹0.00</p>
</div>
<div>
<P>Grand Total : </P>
<p id="Gtotal"></p>
</div>
<button id="But">Process To Pay</button>
</div>
</div>
</div>
</body>
</html>
<script type="module" src="./scripts/shipping.js"></script>