This repository has been archived on 2025-12-24. You can view files and clone it, but cannot push or open issues or pull requests.
site-template/meta/gallery.html
2025-03-07 14:59:06 +01:00

10 lines
461 B
HTML

<div class="grid grid-cols-2 gap-4 mt-4">
<div class="bg-gray-100 p-4 rounded">
<img src="URL_OF_FIRST_IMAGE" alt="Hotel in Lamu" class="w-full h-48 object-cover rounded">
<h2 class="text-lg font-semibold mt-2">Hotel Name 1</h2>
</div>
<div class="bg-gray-100 p-4 rounded">
<img src="URL_OF_SECOND_IMAGE" alt="Hotel in Lamu" class="w-full h-48 object-cover rounded">
<h2 class="text-lg font-semibold mt-2">Hotel Name 2</h2>
</div>
</div>