Spaces:
Running
Running
File size: 1,123 Bytes
803aaea 83c3a4e 803aaea 83c3a4e 803aaea 19d2497 83c3a4e 19d2497 cc0a382 |
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 |
<!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> |