elreco

<body class="bg-gray-100 font-sans leading-normal tracking-normal">
  <header class="bg-white shadow-lg p-4">
    <div class="max-w-6xl mx-auto flex justify-between items-center">
      <div class="flex items-center space-x-4">
        <i class="iconoir-home text-2xl"></i>
        <span class="font-bold text-xl">My Blog</span>
      </div>
      <nav class="hidden md:flex items-center 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">About</a>
        <a href="#" class="text-gray-700 hover:text-gray-900">Contact</a>
      </nav>
      <div class="md:hidden flex items-center">
        <button class="mobile-menu-button">
          <i class="iconoir-menu text-2xl"></i>
        </button>
      </div>
    </div>
  </header>

  <main class="max-w-6xl mx-auto p-4">
    <article class="bg-white shadow-lg rounded-lg p-6 mb-6">
      <header class="mb-4">
        <h1 class="text-3xl font-bold mb-2">The Beauty of Nature</h1>
        <p class="text-gray-600">By <span class="font-semibold">John Doe</span> on <time datetime="2023-10-01">October 1, 2023</time></p>
      </header>
      <figure class="mb-4">
        <img src="https://source.unsplash.com/random/800x400?nature" alt="Beautiful nature" class="w-full rounded-lg">
        <figcaption class="text-gray-600 text-sm mt-2">A breathtaking view of nature</figcaption>
      </figure>
      <section class="mb-4">
        <p class="mb-4">Nature is the most beautiful and attractive surrounding around us which make us happy and provide us natural environment to live healthy. Our nature provides us a variety of beautiful flowers, attractive birds, animals, green plants, blue sky, land, running rivers, sea, forests, air, mountains, valleys, hills, and many more things.</p>
        <p class="mb-4">Nature is very essential for our healthy life so we should keep it clean and conserve it for our future generations. We should not destroy the originality of nature and should not imbalance the ecosystem cycle. Our nature provides us beautiful environment to live and enjoy so it is our responsibility to keep it clean and away from all the damages.</p>
      </section>
      <footer class="flex items-center space-x-4">
        <button class="flex items-center text-gray-700 hover:text-gray-900">
          <i class="iconoir-heart text-xl"></i>
          <span class="ml-1">Like</span>
        </button>
        <button class="flex items-center text-gray-700 hover:text-gray-900">
          <i class="iconoir-chat-bubble text-xl"></i>
          <span class="ml-1">Comment</span>
        </button>
        <button class="flex items-center text-gray-700 hover:text-gray-900">
          <i class="iconoir-share text-xl"></i>
          <span class="ml-1">Share</span>
        </button>
      </footer>
    </article>
  </main>

  <footer class="bg-white shadow-lg p-4 mt-6">
    <div class="max-w-6xl mx-auto text-center">
      <p class="text-gray-600">&copy; 2023 My Blog. All rights reserved.</p>
    </div>
  </footer>
</body>