<!DOCTYPE html>

<html lang="en">

<head>

  <meta charset="UTF-8">

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

  <title>My Multi-Section Website</title>

  <style>

    body {

      font-family: Arial, sans-serif;

      margin: 0;

      padding: 0;

      line-height: 1.6;

      color: #333;

      background-color: #f4f4f4;

    }


    header {

      background-color: #2c3e50;

      color: white;

      padding: 20px 0;

      text-align: center;

    }


    nav a {

      color: white;

      margin: 0 15px;

      text-decoration: none;

      font-weight: bold;

    }


    nav a:hover {

      text-decoration: underline;

    }


    section {

      max-width: 800px;

      margin: 50px auto;

      padding: 0 20px;

      background: white;

      border-radius: 8px;

      box-shadow: 0 0 10px rgba(0,0,0,0.1);

    }


    h2 {

      color: #2c3e50;

      text-align: center;

      margin-top: 20px;

    }


    footer {

      background-color: #2c3e50;

      color: white;

      text-align: center;

      padding: 15px 0;

      margin-top: 50px;

    }


    /* Responsive layout */

    @media (max-width: 600px) {

      nav a {

        display: block;

        margin: 10px 0;

      }

    }

  </style>

</head>

<body>

  <header>

    <h1>Welcome to My Website</h1>

    <nav>

      <a href="#about">About</a>

      <a href="#services">Services</a>

      <a href="#contact">Contact</a>

    </nav>

  </header>


  <section id="about">

    <h2>About Me</h2>

    <p>Hello! I’m [Your Name], and this is my personal website. Here, I share information about myself, my projects, and what I can offer.</p>

  </section>


  <section id="services">

    <h2>Services</h2>

    <p>I offer web design, content creation, and digital marketing services. Check out my portfolio to see some examples of my work.</p>

  </section>


  <section id="contact">

    <h2>Contact</h2>

    <p>You can reach me at <a href="mailto:you@example.com">you@example.com</a> or through my social media channels.</p>

  </section>


  <footer>

    &copy; 2025 My Website. All rights reserved.

  </footer>

</body>

</html>