<!DOCTYPE html>
<html>
  <meta charset="utf-8">
  <title>Photographer's Homepage</title>
  <link rel="stylesheet" href="style.css">
</head>
<body>
  <header>
    <h1>Welcome to My Photography</h1>
    <nav>
      <ul>
        <li><a href="#home">Home</a></li>
        <li><a href="#portfolio">Portfolio</a></li>
        <li><a href="#about">About</a></li>
        <li><a href="#contact">Contact</a></li>
      </ul>
    </nav>
  </header>
  <section id="home">
    <div class="hero">
      <h2>Capturing Beautiful Moments</h2>
      <p>Professional Photography Services</p>
      <a href="#portfolio" class="btn">View Portfolio</a>
    </div>
  </section>
  <section id="portfolio">
    <h2>Portfolio</h2>
    <div class="gallery">
      <img src="image1.jpg" alt="Image 1">
      <img src="image2.jpg" alt="Image 2">
      <img src="image3.jpg" alt="Image 3">
      <img src="image4.jpg" alt="Image 4">
      <!-- Add more images here -->
    </div>
  </section>
  <section id="about">
    <h2>About Me</h2>
    <div class="about-content">
      <img src="profile.jpg" alt="Profile Picture">
      <p>I am a professional photographer with years of experience capturing beautiful moments. I specialize in portrait, landscape, and event photography. I am passionate about my craft and strive to create stunning visuals that tell a story.</p>
    </div>
  </section>
  <section id="contact">
    <h2>Contact Me</h2>
    <form action="contact.php" method="post">
      <label for="name">Name</label>
      <input type="text" id="name" name="name">
      <label for="email">Email</label>
      <input type="email" id="email" name="email">
      <label for="message">Message</label>
      <textarea id="message" name="message"></textarea>
      <input type="submit" value="Send Message" class="btn">
    </form>
  </section>
  <footer>
    <p>&copy; 2023 My Photography. All rights reserved.</p>
  </footer>
  <script src="script.js"></script>
</body>
</html>