<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Fatima's Mixed Media World</title>
  <link rel="stylesheet" href="style.css">
</head>
<body>
  <header class="site-header">
    <h1>🎨 Fatima's Mixed Media Playground 🎨</h1>
    <nav class="nav-bar">
      <a href="#gallery">Gallery</a>
      <a href="#videos">Videos</a>
      <a href="#interactive">Interactive</a>
    </nav>
  </header>

  <main>
    <!-- Gallery Section -->
    <section id="gallery" class="section-gallery">
      <h2>My Art</h2>
      <div class="gallery-grid">
        <img src="images/art1.jpg" alt="Artwork 1">
        <img src="images/art2.jpg" alt="Artwork 2">
        <img src="images/art3.jpg" alt="Artwork 3">
      </div>
    </section>

    <!-- Video Section -->
    <section id="videos" class="section-videos">
      <h2>Animations & Videos</h2>
      <video controls class="video-player">
        <source src="videos/animation1.mp4" type="video/mp4">
        Your browser does not support the video tag.
      </video>
    </section>

    <!-- Interactive Section -->
    <section id="interactive" class="section-interactive">
      <h2>Interactive Fun</h2>
      <button onclick="alert('Hello from Fatima!')">Click Me!</button>
    </section>
  </main>

  <footer class="site-footer">
    <p>Made with 💛 by Fatima Noor | <a href="https://neocities.org">Neocities</a></p>
  </footer>

  <script src="script.js"></script>
</body>
</html>