Spaces:
Running
Running
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Gallery – Italias Romanos Too</title> | |
| <link rel="icon" type="image/x-icon" href="http://static.photos/food/64x64/42"> | |
| <link rel="stylesheet" href="style.css"> | |
| <script src="https://cdn.tailwindcss.com"></script> | |
| <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script> | |
| <script src="https://unpkg.com/feather-icons"></script> | |
| </head> | |
| <body class="bg-gray-50 dark:bg-gray-900 text-gray-800 dark:text-gray-100 transition-colors"> | |
| <custom-header></custom-header> | |
| <main class="max-w-5xl mx-auto px-4 py-10"> | |
| <h1 class="text-3xl md:text-4xl font-extrabold mb-6 text-center">Photo Gallery</h1> | |
| <div class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 gap-6"> | |
| <img src="http://static.photos/pizza/640x360/1" alt="Pizza" class="rounded-2xl shadow-md w-full h-64 object-cover"> | |
| <img src="http://static.photos/food/640x360/2" alt="Food" class="rounded-2xl shadow-md w-full h-64 object-cover"> | |
| <img src="http://static.photos/food/640x360/3" alt="Food" class="rounded-2xl shadow-md w-full h-64 object-cover"> | |
| <img src="http://static.photos/food/640x360/4" alt="Food" class="rounded-2xl shadow-md w-full h-64 object-cover"> | |
| <img src="http://static.photos/food/640x360/5" alt="Food" class="rounded-2xl shadow-md w-full h-64 object-cover"> | |
| <img src="http://static.photos/restaurant/640x360/6" alt="Restaurant" class="rounded-2xl shadow-md w-full h-64 object-cover"> | |
| </div> | |
| </main> | |
| <custom-footer></custom-footer> | |
| <script src="components/header.js"></script> | |
| <script src="components/footer.js"></script> | |
| <script src="script.js"></script> | |
| <script>feather.replace();</script> | |
| </body> | |
| </html> |