You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
828 B
33 lines
828 B
6 months ago
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
<title>E-Waste Marketplace</title>
|
||
|
<link rel="stylesheet" href="style.css">
|
||
|
</head>
|
||
|
<body>
|
||
|
<header>
|
||
|
<h1>E-Waste Marketplace</h1>
|
||
|
<p>Browse available e-waste products and add them to your cart.</p>
|
||
|
</header>
|
||
|
|
||
|
<main>
|
||
|
<div id="product-list"></div>
|
||
|
|
||
|
<div id="cart">
|
||
|
<h3>Your Cart</h3>
|
||
|
<ul id="cart-items"></ul>
|
||
|
<p>Total Cost: $<span id="total-cost">0.00</span></p>
|
||
|
<button id="checkout-btn">Checkout</button>
|
||
|
</div>
|
||
|
</main>
|
||
|
|
||
|
<footer>
|
||
|
<p>© 2025 E-Waste Marketplace. All rights reserved.</p>
|
||
|
</footer>
|
||
|
|
||
|
<script src="./script.js"></script>
|
||
|
</body>
|
||
|
</html>
|