-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcart.html
73 lines (67 loc) · 2.09 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>GameHaven - Your Cart</title>
<link rel="stylesheet" href="cart.css">
</head>
<body>
<!-- Header -->
<header class="header">
<div class="container">
<h1 class="logo">GameHaven</h1>
<nav>
<ul class="nav-links">
<li><a href="gameheaven.html">Home</a></li>
<li><a href="#shop">Shop</a></li>
<li><a href="cart.html" >Cart</a></li>
</ul>
</nav>
</div>
</header>
<!-- Cart Section -->
<section class="cart-section">
<div class="container">
<h2>Your Shopping Cart</h2>
<div class="cart-items">
<!-- Cart Item 1 -->
<div class="cart-item">
<img src="images/console2.jpg" alt="PS5">
<div class="cart-item-details">
<h3>PlayStation 5</h3>
<p>Price: $499.99</p>
<div class="quantity">
<label for="quantity">Quantity:</label>
<input type="number" id="quantity" value="1" min="1">
</div>
<button class="remove-btn">Remove</button>
</div>
</div>
<!-- Cart Item 2 -->
<div class="cart-item">
<img src="images/console1.png" alt="Xbox Series X">
<div class="cart-item-details">
<h3>Xbox Series X</h3>
<p>Price: $499.99</p>
<div class="quantity">
<label for="quantity">Quantity:</label>
<input type="number" id="quantity" value="1" min="1">
</div>
<button class="remove-btn">Remove</button>
</div>
</div>
</div>
<div class="cart-summary">
<h3>Cart Summary</h3>
<p>Total: $999.98</p>
<a href="checkout.html" class="cta-button">Proceed to Checkout</a>
</div>
</div>
</section>
<!-- Footer -->
<footer class="footer">
<p>© 2024 GameHaven. All rights reserved.</p>
</footer>
</body>
</html>