File size: 3,096 Bytes
973b24f
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<!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>