-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cart.html
180 lines (171 loc) · 5 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
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
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css"
integrity="sha512-SnH5WK+bZxgPHs44uWIX+LLJAJ9/2PkPKZ5QiAj6Ta86w+fsb2TkcmfRyVX3pBnMFcV7oQPJkl9QevSCWr3W6A=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
<link rel="stylesheet" href="./style.css" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap"
rel="stylesheet"
/>
<title>Cart</title>
</head>
<body>
<input type="checkbox" id="chkBox" />
<header>
<div class="logo">
<div
style="
padding: 5px;
margin: 10px;
width: 25px;
height: 25px;
border-radius: 50%;
background-color: rgb(3, 205, 3);
"
></div>
<div
style="display: flex; justify-content: center; align-items: center"
>
<h2 class="logo-text" style="margin-left: -44px !important">
Apni Dukan
</h2>
<label for="chkBox" class="hamburger-label">
<div></div>
<div></div>
<div></div>
</label>
</div>
</div>
<div class="menu">
<ul class="nav">
<li><a href="./index.html">Home</a></li>
<li><a href="./deliveredProducts.html">Orders</a></li>
<li><a href="./registration.html">Account</a></li>
<li>
<a href="./Cart.html">
Cart <i class="fa fa-solid fa-cart-shopping"></i
></a>
</li>
<!-- <li>
<a href="#"><i class="fa fa-solid fa-user"></i></a>
</li> -->
</ul>
</div>
</header>
<section id="heading">
<h2>Cart</h2>
<h2>3 items</h2>
</section>
<section id="cart" class="section-p1">
<table width="100%">
<thead>
<tr>
<td>#</td>
<td><b>PRODUCT</b></td>
<td>NAME</td>
<td>PRICE</td>
<td>QUANTITY</td>
<td>SUBTOTAL</td>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>
<img src="./Apple iPhone 14.webp" />
</td>
<td>Apple iPhone 15 Pro</td>
<td>Rs. 45,000</td>
<td><input type="number" value="1" /></td>
<td>Rs. 45,000</td>
</tr>
<tr>
<td>2</td>
<td>
<img src="./POCO M6 Pro 5G.webp" />
</td>
<td>POCO M6 Pro 5G</td>
<td>Rs. 30,000</td>
<td><input type="number" value="1" /></td>
<td>Rs. 30,000</td>
</tr>
<tr>
<td>3</td>
<td>
<img
src="./OnePlus Nord CE 3 Lite 5G (Pastel Lime, 128 GB) (8 GB RAM).webp"
/>
</td>
<td>OnePlus Nord CE 3 Lite 5G</td>
<td>Rs. 35,000</td>
<td><input type="number" value="1" /></td>
<td>Rs. 35,000</td>
</tr>
</tbody>
</table>
</section>
<section id="cart-total">
<div style="display: flex; justify-content: space-between">
<span><strong>Subtotal</strong></span>
<span>Rs. 1,10,000</span>
</div>
<div style="display: flex; justify-content: space-between">
<span><strong>Shipping</strong></span>
<span>Free</span>
</div>
<div style="display: flex; justify-content: space-between">
<span><strong>Tax</strong></span>
<span>Rs. 5000</span>
</div>
<hr style="width: 100%" />
<div style="display: flex; justify-content: space-between">
<span><strong>Total</strong></span>
<span><strong>Rs. 1,15,000</strong></span>
</div>
<a href="./OrderPage.html">
<button
style="
color: white;
font-weight: bold;
padding: 9px 16px;
border-radius: 6px;
background-color: rgb(1, 209, 1);
border: none;
width: 100%;
cursor: pointer;
"
>
Proceed to Checkout
</button>
</a>
<a href="./index.html">
<button
type="button"
style="
cursor: pointer;
color: rgb(10, 10, 10);
font-weight: bold;
padding: 9px 16px;
border-radius: 6px;
background-color: rgb(253, 255, 253);
border: 1px solid rgb(150, 150, 150);
width: 100%;
"
>
Continue Shopping
</button>
</a>
</section>
<script src="./script.js"></script>
</body>
</html>