forked from aman1722/Industry-Buying-Clone
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cart.html
130 lines (127 loc) · 4.54 KB
/
cart.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
<!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>IndusTech/cart</title>
<link rel="apple-touch-icon" sizes="180x180" href="favicon_io/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="favicon_io/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="favicon_io/favicon-16x16.png">
<link rel="manifest" href="favicon_io/site.webmanifest">
<link rel="stylesheet" href="cart.css">
</head>
<body>
<nav>
<div>
<div>
<img src="./Images/induslogo.jpg" alt="">
</div>
<div>
<div>
<p>Secure</p>
<p>PAYMENTS</p>
</div>
<div>
<p>Original</p>
<p>PRODUCTS</p>
</div>
<div>
<p>Free & Easy</p>
<p>RETURNS</p>
</div>
<div>
<p>100% Buyer</p>
<p>PROTECTION</p>
</div>
</div>
</div>
</nav>
<div id="main">
<div id="first">
<div id="firstchild1">
<span>My Cart </span><span> (<span id="count"></span> items)</span>
</div>
<div id="firstchild2">
<table>
<thead>
<tr>
<td>Item</td>
<td>Quantity</td>
<td>Price <span>(inclusive of GST)</span> </td>
</tr>
</thead>
<tbody>
<!-- append the data here -->
</tbody>
</table>
</div>
<div id="mediaTotal">
<h1>Total Price</h1>
<form id="form">
<input type="number" id="pin" placeholder="pincode">
</form>
<div>
<span id="aamount"></span>
<p id="charges">Shipping charges: Rs 1200</p>
</div>
</div>
<div id="firstchild3">
<button id="continueShopping">+CONTINUE SHOPPING</button>
<button id="placeOrder" >PLACE ORDER</button>
</div>
</div>
<div id="second">
<div id="paymentSummary">
<div>
<div>
<p class="heading">payment Summary</p>
</div>
</div>
<hr>
<div id="shippingAdd">
<p>Estimate shipping charges</p>
<input type="number" placeholder="Pincode" id="pincode"><button id="check">check</button>
</div>
<div id="totalPrice">
<div><span>Subtotal</span><span id="subTotal"></span></div>
<div><span>Shipping Charges</span><span id="sippingCharges">FREE</span></div>
<div><span>Total Price</span><span id="total"></span></div>
</div>
<hr>
<div>
<p>Shipping charges applicable as per your pincode 462048</p>
</div>
</div>
<div id="partnerOffers">
<div>
<div>
<p class="heading">Partner Offers</p>
</div>
</div>
<div>
<p>Get GST invoice and save up to 28% on Business Purchases.</p>
<a href="">View more</a>
</div>
</div>
<div id="offersAvailable">
<div>
<div>
<p class="heading">Offers Available</p>
</div>
</div>
<div>
<input type="text" placeholder="Enter your coupon" id="coupon"><button id="btnCoupon">Apply</button>
</div>
</div>
</div>
</div>
<div id="footer">
<p>By clicking on Place Order button you agree to industrybuying.com's <a href="">Terms & Conditions</a> and <a href="">Privacy Policy</a>.</p>
<div id="imgContainers">
<img src="./Images/payment_options_min.png" alt="">
</div>
</div>
</body>
<script src="./cart.js"></script>
</html>