Spaces:
Running
Running
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Shopping Cart</title> | |
<link href="style.css" rel="stylesheet"> | |
</head> | |
<body class="bg-gray-100"> | |
<header class="bg-amazon-blue p-4 text-white"> | |
<div class="container mx-auto"> | |
<div class="flex justify-between items-center"><h1 class="text-2xl font-bold">Amazon Dummy</h1><a href="cart.html" class="text-white">Cart</a></div> | |
<a href="index.html" class="text-sm">Back to Home</a> | |
</div> | |
</header> | |
<main class="container mx-auto mt-8"> | |
<h2 class="text-2xl font-semibold mb-4">Shopping Cart</h2> | |
<div id="cart-items"> | |
<!-- Cart items will be dynamically added here using JavaScript --> | |
</div> | |
<div class="mt-6"> | |
<h3 class="text-lg font-semibold">Total: <span id="cart-total">0.00</span></h3> | |
<a href="checkout.html"><button class="bg-amazon-yellow hover:bg-yellow-500 text-black font-bold py-2 px-4 rounded">Checkout</button></a> | |
Checkout | |
</button> | |
</div> | |
</main> | |
<footer class="bg-gray-200 p-4 mt-8 text-center"> | |
<p>© 2024 Amazon Dummy</p> | |
</footer> | |
<script src="script.js"></script> | |
</body> | |
</html> | |