Dentana

<body class="bg-gray-100 font-sans leading-normal tracking-normal">
  <header class="bg-white shadow-lg">
      <div class="max-w-6xl mx-auto px-4">
          <div class="flex justify-between items-center py-4">
              <div class="flex items-center">
                  <i class="iconoir-hotel text-2xl"></i>
                  <span class="font-bold text-xl ml-2">Hotel Reservation</span>
              </div>
              <nav class="hidden md:flex space-x-4">
                  <a href="#" class="text-gray-700 hover:text-gray-900">Home</a>
                  <a href="#" class="text-gray-700 hover:text-gray-900">Rooms</a>
                  <a href="#" class="text-gray-700 hover:text-gray-900">Services</a>
                  <a href="#" class="text-gray-700 hover:text-gray-900">Contact</a>
              </nav>
              <div class="hidden md:flex items-center space-x-2">
                  <a href="#" class="text-gray-700 hover:text-gray-900">Login</a>
                  <a href="#" class="bg-blue-500 text-white px-4 py-2 rounded hover:bg-blue-400">Sign Up</a>
              </div>
              <div class="md:hidden flex items-center">
                  <button class="mobile-menu-button">
                      <i class="iconoir-menu text-2xl"></i>
                  </button>
              </div>
          </div>
      </div>
  </header>

  <div class="bg-cover bg-center h-96" style="background-image: url('https://placehold.co/800x400')">
      <div class="flex items-center justify-center h-full bg-black bg-opacity-50">
          <h1 class="text-white text-4xl font-bold">Welcome to Our Hotel</h1>
      </div>
  </div>

  <section class="py-10">
      <div class="max-w-6xl mx-auto px-4">
          <h2 class="text-2xl font-bold text-center mb-6">Our Rooms</h2>
          <div class="grid grid-cols-1 md:grid-cols-3 gap-6">
              <div class="bg-white rounded-lg shadow-lg overflow-hidden">
                  <img src="https://placehold.co/400x300" alt="Room 1" class="w-full h-48 object-cover">
                  <div class="p-4">
                      <h3 class="font-bold text-lg">Deluxe Room</h3>
                      <p class="text-gray-600">A spacious room with a beautiful view.</p>
                      <span class="block text-blue-500 font-bold mt-2">$150/night</span>
                      <button class="mt-4 bg-blue-500 text-white px-4 py-2 rounded hover:bg-blue-400">Book Now</button>
                  </div>
              </div>
              <div class="bg-white rounded-lg shadow-lg overflow-hidden">
                  <img src="https://placehold.co/400x300" alt="Room 2" class="w-full h-48 object-cover">
                  <div class="p-4">
                      <h3 class="font-bold text-lg">Standard Room</h3>
                      <p class="text-gray-600">Comfortable and affordable for all guests.</p>
                      <span class="block text-blue-500 font-bold mt-2">$100/night</span>
                      <button class="mt-4 bg-blue-500 text-white px-4 py-2 rounded hover:bg-blue-400">Book Now</button>
                  </div>
              </div>
              <div class="bg-white rounded-lg shadow-lg overflow-hidden">
                  <img src="https://placehold.co/400x300" alt="Room 3" class="w-full h-48 object-cover">
                  <div class="p-4">
                      <h3 class="font-bold text-lg">Suite</h3>
                      <p class="text-gray-600">Luxury suite with all amenities included.</p>
                      <span class="block text-blue-500 font-bold mt-2">$250/night</span>
                      <button class="mt-4 bg-blue-500 text-white px-4 py-2 rounded hover:bg-blue-400">Book Now</button>
                  </div>
              </div>
          </div>
      </div>
  </section>

  <footer class="bg-white py-6">
      <div class="max-w-6xl mx-auto px-4 text-center">
          <p class="text-gray-600">© 2023 Hotel Reservation. All rights reserved.</p>
          <div class="flex justify-center space-x-4 mt-2">
              <a href="#" class="text-gray-600 hover:text-gray-900">Privacy Policy</a>
              <a href="#" class="text-gray-600 hover:text-gray-900">Terms of Service</a>
          </div>
      </div>
  </footer>
</body>