-
Notifications
You must be signed in to change notification settings - Fork 0
/
cart.html
58 lines (53 loc) · 1.67 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Responsive E-Commerce Website</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<nav>
<div class="logo">
<img src="logo.png"></div>
<ul class="nav-links">
<li><a href="index.html">Home</a></li>
<li><a href="shopnow.html">Products</a></li>
<li><a href="#">About</a></li>
<li><a href="productpur.html">Contact</a></li>
</ul>
<div class="cart">
<a href="cart.html">Cart</a>
<img src="cart.png">
</div>
</nav>
</header>
<div class="container">
<h1>Shopping Cart</h1>
<table class="cart-table">
<thead>
<tr>
<th>Product</th>
<th>Quantity</th>
<th>Price</th>
<th>Total</th>
<th>Actions</th>
</tr>
</thead>
<tbody id="cart-items">
<!-- Cart items will be dynamically generated here -->
</tbody>
</table>
<div class="cart-summary">
<h3>Cart Summary</h3>
<p id="cart-total">Total: $0.00</p>
</div>
</div>
<script src="script.js"></script>
<footer>
<p>© 2024 starial.in. All rights reserved.</p>
<a href="footer.html">privacy policy </a>
</footer>
</body>
</html>