-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbookCart.html
More file actions
59 lines (59 loc) · 1.17 KB
/
bookCart.html
File metadata and controls
59 lines (59 loc) · 1.17 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Cart - Maa Sharda book store</title>
<link rel="stylesheet" href="cart.css">
</head>
<body>
<div class="welcome-section">
<div class="cart-container">
<h2>Your Cart</h2>
<table class="cart-table">
<thead>
<tr>
<th>Book</th>
<th>Publication</th>
<th>Price</th>
<th>Quantity</th>
<th>Total</th>
<th>Action</th>
</tr>
</thead>
<tbody>
<!-- Book 1 -->
<tr>
<td>Ratan Tata:A Life</td>
<td>Thomas Mathew</td>
<td>₹789</td>
<td>
<input type="number" value="1" min="1" class="quantity-input">
</td>
<td>₹789</td>
<td><button class="remove-btn">Remove</button></td>
</tr>
<!-- Book 2 -->
<tr>
<td>The Drowing</td>
<td> Sourcebooks </td>
<td>₹719</td>
<td>
<input type="number" value="1" min="1" class="quantity-input">
</td>
<td>₹719</td>
<td><button class="remove-btn">Remove</button></td>
</tr>
</tbody>
</table>
<div class="cart-summary">
<h3>Cart Summary</h3>
<p>Subtotal: ₹1,508</p>
<!-- <p>Tax (18%): ₹</p> -->
<p><strong>Total: ₹271,44</strong></p>
<button class="checkout-btn">Proceed to Checkout</button>
</div>
</div>
</div>
</body>
</html>