test-space / index.html
KingNish's picture
Implemented product details, shopping cart, and checkout functionality (#20)
5cc830e verified
raw
history blame
1.12 kB
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Amazon Dummy</title>
<link href="style.css" rel="stylesheet">
</head>
<body>
<header class="bg-amazon-blue">
<div class="container mx-auto py-2">
<div class="flex items-center justify-between">
<div class="text-white font-bold text-2xl">Amazon Dummy</div>
<div class="flex items-center">
<input type="text" class="px-4 py-2 rounded-l-md focus:outline-none" placeholder="Search">
<button class="bg-amazon-orange hover:bg-yellow-500 text-white font-bold py-2 px-4 rounded-r-md">Search</button>
</div>
</div>
</div>
</header>
<main class="container mx-auto mt-4">
<section id="products" class="grid grid-cols-1 md:grid-cols-3 lg:grid-cols-4 gap-4">
<!-- Products will be dynamically added here -->
</section>
</main>
<script src="script.js"></script>
</body>
</html>