<!DOCTYPE html>

<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>BloggerSpot Live - Ideas That Inspire</title>
  <style>
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      line-height: 1.6;
      color: #333;
      background-color: #f8f9fa;
    }

    /* Header */
    header {
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      color: white;
      padding: 1rem 0;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
      position: sticky;
      top: 0;
      z-index: 1000;
    }

    .nav-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .logo {
      font-size: 28px;
      font-weight: 700;
      letter-spacing: -1px;
    }

    .logo span {
      color: #ffd700;
    }

    nav ul {
      display: flex;
      list-style: none;
      gap: 25px;
    }

    nav a {
      color: white;
      text-decoration: none;
      font-weight: 500;
      transition: 0.3s;
    }

    nav a:hover {
      color: #ffd700;
    }

    /* Hero Section */
    .hero {
      background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.7)), url('https://source.unsplash.com/random/1600x900/?blog') center/cover no-repeat;
      height: 90vh;
      display: flex;
      align-items: center;
      text-align: center;
      color: white;
    }

    .hero-content {
      max-width: 800px;
      margin: 0 auto;
      padding: 0 20px;
    }

    .hero h1 {
      font-size: 3.5rem;
      margin-bottom: 20px;
    }

    .hero p {
      font-size: 1.3rem;
      margin-bottom: 30px;
      opacity: 0.9;
    }

    .btn {
      display: inline-block;
      padding: 14px 32px;
      background: #ffd700;
      color: #333;
      font-weight: 600;
      border-radius: 50px;
      text-decoration: none;
      transition: 0.3s;
    }

    .btn:hover {
      background: #ffed4e;
      transform: translateY(-3px);
    }

    /* Main Content */
    .container {
      max-width: 1200px;
      margin: 40px auto;
      padding: 0 20px;
    }

    h2 {
      text-align: center;
      margin-bottom: 40px;
      font-size: 2.5rem;
      color: #333;
    }

    /* Blog Grid */
    .blog-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
      gap: 30px;
    }

    .blog-card {
      background: white;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0,0,0,0.08);
      transition: 0.3s;
    }

    .blog-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    }

    .blog-card img {
      width: 100%;
      height: 220px;
      object-fit: cover;
    }

    .blog-content {
      padding: 20px;
    }

    .blog-content h3 {
      font-size: 1.4rem;
      margin-bottom: 10px;
      line-height: 1.3;
    }

    .blog-content p {
      color: #666;
      font-size: 0.95rem;
      margin-bottom: 15px;
    }

    .blog-meta {
      display: flex;
      justify-content: space-between;
      font-size: 0.85rem;
      color: #888;
    }

    /* Sidebar */
    .main-content {
      display: grid;
      grid-template-columns: 3fr 1fr;
      gap: 40px;
    }

    .sidebar {
      background: white;
      padding: 25px;
      border-radius: 12px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.08);
      height: fit-content;
    }

    .sidebar h3 {
      margin-bottom: 20px;
      padding-bottom: 10px;
      border-bottom: 2px solid #667eea;
    }

    /* Footer */
    footer {
      background: #222;
      color: #ddd;
      text-align: center;
      padding: 40px 20px;
      margin-top: 60px;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .hero h1 {
        font-size: 2.5rem;
      }
      .main-content {
        grid-template-columns: 1fr;
      }
      nav ul {
        gap: 15px;
        font-size: 0.95rem;
      }
    }
  </style>
</head>
<body>

  <!-- Header -->
  <header>
    <div class="nav-container">
      <div class="logo">Blogger<span>Spot</span> Live</div>
      <nav>
        <ul>
          <li><a href="#">Home</a></li>
          <li><a href="#">Technology</a></li>
          <li><a href="#">Lifestyle</a></li>
          <li><a href="#">Travel</a></li>
          <li><a href="#">About</a></li>
        </ul>
      </nav>
    </div>
  </header>

  <!-- Hero Section -->
  <section class="hero">
    <div class="hero-content">
      <h1>Welcome to BloggerSpot Live</h1>
      <p>Discover inspiring stories, latest trends, and fresh ideas from around the world.</p>
      <a href="#" class="btn">Explore Latest Posts</a>
    </div>
  </section>

  <div class="container">
    <div class="main-content">

      <!-- Main Blog Section -->
      <div>
        <h2>Latest Articles</h2>
        
        <div class="blog-grid">
          <!-- Blog Card 1 -->
          <div class="blog-card">
            <img src="https://source.unsplash.com/random/600x400/?technology" alt="Tech">
            <div class="blog-content">
              <h3>The Future of AI in 2026 and Beyond</h3>
              <p>Exploring how artificial intelligence is reshaping industries and our daily lives.</p>
              <div class="blog-meta">
                <span>By Lokesh Shukla</span>
                <span>March 31, 2026</span>
              </div>
            </div>
          </div>

          <!-- Blog Card 2 -->
          <div class="blog-card">
            <img src="https://source.unsplash.com/random/600x400/?travel" alt="Travel">
            <div class="blog-content">
              <h3>Hidden Gems of Rajasthan You Must Visit</h3>
              <p>Beyond the usual tourist spots, discover the real soul of the desert state.</p>
              <div class="blog-meta">
                <span>By Travel Team</span>
                <span>March 30, 2026</span>
              </div>
            </div>
          </div>

          <!-- Blog Card 3 -->
          <div class="blog-card">
            <img src="https://source.unsplash.com/random/600x400/?lifestyle" alt="Lifestyle">
            <div class="blog-content">
              <h3>10 Habits That Changed My Life in One Year</h3>
              <p>Simple daily habits that can transform your productivity and happiness.</p>
              <div class="blog-meta">
                <span>By Lifestyle Desk</span>
                <span>March 29, 2026</span>
              </div>
            </div>
          </div>
        </div>
      </div>

      <!-- Sidebar -->
      <div class="sidebar">
        <h3>Popular Categories</h3>
        <ul style="list-style:none; line-height:2.2;">
          <li><a href="#" style="text-decoration:none; color:#667eea;">→ Technology</a></li>
          <li><a href="#" style="text-decoration:none; color:#667eea;">→ Travel</a></li>
          <li><a href="#" style="text-decoration:none; color:#667eea;">→ Health & Wellness</a></li>
          <li><a href="#" style="text-decoration:none; color:#667eea;">→ Business</a></li>
          <li><a href="#" style="text-decoration:none; color:#667eea;">→ Food & Recipes</a></li>
          <li><a href="#" style="text-decoration:none; color:#667eea;">→ Personal Finance</a></li>
        </ul>

        <h3 style="margin-top:40px;">Newsletter</h3>
        <p style="margin:15px 0; font-size:0.95rem;">Get the best articles delivered straight to your inbox.</p>
        <input type="email" placeholder="Your email address" style="width:100%; padding:12px; border:1px solid #ddd; border-radius:8px; margin-bottom:10px;">
        <button style="width:100%; padding:12px; background:#667eea; color:white; border:none; border-radius:8px; font-weight:600;">Subscribe</button>
      </div>
    </div>
  </div>

  <!-- Footer -->
  <footer>
    <p>&copy; 2026 BloggerSpot Live. All Rights Reserved.</p>
    <p>Made with ❤️ for passionate writers and readers</p>
  </footer>

</body>
</html>

0 $type={blogger}:

Post a Comment