-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproduct.html
More file actions
64 lines (62 loc) · 2.8 KB
/
product.html
File metadata and controls
64 lines (62 loc) · 2.8 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Product Details - Smartphone X</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>
<!-- Product Details -->
<div class="container mt-4">
<div class="row">
<div class="col-md-6">
<img src="images/product1.jpg" class="img-fluid rounded" alt="Smartphone X">
</div>
<div class="col-md-6">
<h2>Smartphone X</h2>
<p class="text-muted">By Seller: Jane Smith</p>
<p>Latest smartphone model with advanced features, long battery life, and high-resolution camera.</p>
<h4 class="text-primary">R4999.99</h4>
<form method="post" action="cart.html">
<label for="qty">Quantity:</label>
<input type="number" name="quantity" min="1" max="10" value="1" class="form-control w-25 d-inline-block">
<button class="btn btn-success ml-2">Add to Cart</button>
</form>
<hr>
<h5>Product Reviews</h5>
<ul>
<li><strong>John Doe:</strong> Great phone! Highly recommended.</li>
<li><strong>Mary:</strong> Battery lasts all day.</li>
</ul>
</div>
</div>
</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>