-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcart.html
More file actions
71 lines (69 loc) · 2.74 KB
/
cart.html
File metadata and controls
71 lines (69 loc) · 2.74 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
60
61
62
63
64
65
66
67
68
69
70
71
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Your Cart - C2C Marketplace</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
<link rel="stylesheet" href="style.css">
</head>
<body>
<!-- Navbar -->
<nav class="navbar navbar-expand-lg navbar-light bg-light">
<a class="navbar-brand" href="index.html">C2C Marketplace</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNav">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav ml-auto">
<li class="nav-item"><a class="nav-link" href="cart.html">Cart</a></li>
<li class="nav-item"><a class="nav-link" href="login.html">Login</a></li>
<li class="nav-item"><a class="nav-link" href="register.html">Register</a></li>
</ul>
</div>
</nav>
<!-- Cart Content -->
<div class="container mt-4">
<h2>Your Cart</h2>
<form method="post" action="checkout.html">
<table class="table">
<thead>
<tr><th>Product</th><th>Qty</th><th>Price</th><th>Subtotal</th></tr>
</thead>
<tbody>
<tr>
<td>Smartphone X</td>
<td>1</td>
<td>R4999.99</td>
<td>R4999.99</td>
</tr>
<tr>
<td>Summer Dress</td>
<td>2</td>
<td>R299.99</td>
<td>R599.98</td>
</tr>
</tbody>
<tfoot>
<tr>
<td colspan="3"><strong>Total</strong></td>
<td><strong>R5599.97</strong></td>
</tr>
</tfoot>
</table>
<button class="btn btn-primary">Proceed to Checkout</button>
</form>
</div>
<!-- Footer -->
<footer class="footer mt-5 py-3 bg-light">
<div class="container text-center">
<span class="text-muted">© 2025 C2C Marketplace</span>
</div>
</footer>
<!-- Bootstrap JS -->
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.5.3/dist/umd/popper.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
</body>
</html>