Here's a basic HTML structure for creating a web page

PHOTO EMBED

Thu May 25 2023 05:12:00 GMT+0000 (Coordinated Universal Time)

Saved by @faithful

<!DOCTYPE html>
<html>
<head>
  <title>My Web Page</title>
</head>
<body>
  <header>
    <h1>Welcome to My Web Page</h1>
  </header>

  <nav>
    <ul>
      <li><a href="#home">Home</a></li>
      <li><a href="#about">About</a></li>
      <li><a href="#contact">Contact</a></li>
    </ul>
  </nav>

  <section id="home">
    <h2>Home</h2>
    <p>Welcome to my home section.</p>
  </section>

  <section id="about">
    <h2>About</h2>
    <p>This is some information about me.</p>
  </section>

  <section id="contact">
    <h2>Contact</h2>
    <p>You can reach me at example@example.com.</p>
  </section>

  <footer>
    <p>© 2023 My Web Page. All rights reserved.</p>
  </footer>
</body>
</html>
content_copyCOPY