<!DOCTYPE html>

<html lang="en">

<head>

  <meta charset="UTF-8">

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

  <title>Aladarby</title>

  <style>

    * { margin: 0; padding: 0; box-sizing: border-box; }

    body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; color: #333; }

    header { display: flex; align-items: center; padding: 20px 40px; border-bottom: 1px solid #eee; }

    header img { height: 60px; margin-right: 16px; }

    header h1 { font-size: 24px; }

    .hero { text-align: center; padding: 60px 40px; background: #f8f9fa; }

    .hero h2 { font-size: 36px; margin-bottom: 16px; }

    .hero p { font-size: 18px; color: #666; max-width: 600px; margin: 0 auto; }

    .gallery { display: flex; justify-content: center; gap: 24px; padding: 40px; flex-wrap: wrap; }

    .gallery img { max-width: 400px; width: 100%; border-radius: 8px; box-shadow: 0 2px 8px rgba(0,0,0,0.1); }

    .content { max-width: 700px; margin: 0 auto; padding: 40px; line-height: 1.8; font-size: 16px; }

    footer { text-align: center; padding: 20px; border-top: 1px solid #eee; color: #999; font-size: 14px; }

  </style>

</head>

<body>

  <header>

    <img src="logo.png" alt="Logo">

    <h1>Aladarby</h1>

  </header>

  <section class="hero">

    <h2>Welcome to Aladarby</h2>

    <p>Your one-page site — replace this text with your own!</p>

  </section>

  <section class="gallery">

    <img src="image1.jpg" alt="Image 1">

    <img src="image2.jpg" alt="Image 2">

  </section>

  <section class="content">

    <p>Add your text content here. This is your space to share your story, showcase your work, or tell the world about what you do.</p>

  </section>

  <footer>

    &copy; 2026 Aladarby. All rights reserved.

  </footer>

</body>

</html>