pixelpond-gallery / index.html
BryKnight's picture
Show image
973b24f verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>PixelPond Gallery</title>
<link rel="stylesheet" href="style.css">
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://unpkg.com/feather-icons"></script>
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
<script src="components/navbar.js"></script>
<script src="components/footer.js"></script>
</head>
<body class="bg-gray-100">
<custom-navbar></custom-navbar>
<main class="container mx-auto px-4 py-12">
<h1 class="text-4xl font-bold text-center mb-12 text-gray-800">PixelPond Gallery</h1>
<div class="grid grid-cols-1 sm:grid-cols-2 md:grid-cols-3 lg:grid-cols-4 gap-6">
<!-- Image Gallery -->
<div class="bg-white rounded-lg shadow-md overflow-hidden transition-transform hover:scale-105">
<img src="http://static.photos/nature/640x360/1" alt="Nature" class="w-full h-48 object-cover">
<div class="p-4">
<h3 class="font-semibold text-lg">Mountain View</h3>
<p class="text-gray-600">Beautiful landscape</p>
</div>
</div>
<div class="bg-white rounded-lg shadow-md overflow-hidden transition-transform hover:scale-105">
<img src="http://static.photos/cityscape/640x360/2" alt="City" class="w-full h-48 object-cover">
<div class="p-4">
<h3 class="font-semibold text-lg">Urban Life</h3>
<p class="text-gray-600">City skyline</p>
</div>
</div>
<div class="bg-white rounded-lg shadow-md overflow-hidden transition-transform hover:scale-105">
<img src="http://static.photos/food/640x360/3" alt="Food" class="w-full h-48 object-cover">
<div class="p-4">
<h3 class="font-semibold text-lg">Delicious Meal</h3>
<p class="text-gray-600">Gourmet dish</p>
</div>
</div>
<div class="bg-white rounded-lg shadow-md overflow-hidden transition-transform hover:scale-105">
<img src="http://static.photos/travel/640x360/4" alt="Travel" class="w-full h-48 object-cover">
<div class="p-4">
<h3 class="font-semibold text-lg">Exotic Location</h3>
<p class="text-gray-600">Vacation spot</p>
</div>
</div>
</div>
<div class="mt-12 text-center">
<button class="bg-indigo-600 hover:bg-indigo-700 text-white font-medium py-2 px-6 rounded-full transition duration-300">
Load More
</button>
</div>
</main>
<custom-footer></custom-footer>
<script src="script.js"></script>
<script>
feather.replace();
</script>
<script src="https://huggingface.co/deepsite/deepsite-badge.js"></script>
</body>
</html>