Sunday, 1 June 2025

Mlwbd

 <!DOCTYPE html><html lang="en">

<head>

  <meta charset="UTF-8" />

  <meta name="viewport" content="width=device-width, initial-scale=1.0" />

  <title>RK Movie Hub</title>

  <style>

    body { font-family: Arial, sans-serif; background-color: #111; color: #fff; margin: 0; }

    header { background-color: #1f1f1f; padding: 20px; text-align: center; }

    header h1 { margin: 0; font-size: 2em; }

    nav { background: #333; display: flex; justify-content: center; padding: 10px 0; }

    nav a { color: #fff; margin: 0 15px; text-decoration: none; }

    nav a:hover { text-decoration: underline; }

    .container { display: flex; flex-wrap: wrap; justify-content: center; padding: 20px; }

    .movie-card { background: #222; margin: 10px; border-radius: 5px; overflow: hidden; width: 200px; }

    .movie-card img { width: 100%; }

    .movie-info { padding: 10px; }

    .movie-info h3 { margin: 0 0 10px; font-size: 1.1em; }

    .download-btn { display: block; background: #ff5722; color: white; text-align: center; padding: 10px; text-decoration: none; }

    .download-btn:hover { background: #e64a19; }

    footer { background: #1f1f1f; text-align: center; padding: 15px; font-size: 0.9em; }

  </style>

</head>

<body>

  <header>

    <h1>RK Movie Hub</h1>

    <p>Your free source for latest HD movies</p>

  </header>

  <nav>

    <a href="#">Home</a>

    <a href="#">Bollywood</a>

    <a href="#">Hollywood</a>

    <a href="#">Dual Audio</a>

    <a href="#">South Indian</a>

  </nav>

  <div class="container">

    <!-- Movie 1 -->

    <div class="movie-card">

      <img src="https://via.placeholder.com/200x300.png?text=Movie+Poster" alt="Movie Poster" />

      <div class="movie-info">

        <h3>Movie Title 1 (2024)</h3>

        <a class="download-btn" href="#">Download</a>

      </div>

    </div>

    <!-- Movie 2 -->

    <div class="movie-card">

      <img src="https://via.placeholder.com/200x300.png?text=Movie+Poster" alt="Movie Poster" />

      <div class="movie-info">

        <h3>Movie Title 2 (2023)</h3>

        <a class="download-btn" href="#">Download</a>

      </div>

    </div>

    <!-- Add more movie cards here -->

  </div>

  <footer>

    <p>&copy; 2025 RK Movie Hub. All rights reserved.</p>

  </footer>

</body>

</html>