Untitled

 avatar
unknown
plain_text
a year ago
944 B
2
Indexable
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Simple Website</title>
  <link rel="stylesheet" href="styles.css">
</head>
<body>
  <header>
    <h1>Welcome to My Website</h1>
  </header>
  
  <nav>
    <ul>
      <li><a href="#">Home</a></li>
      <li><a href="#">About</a></li>
      <li><a href="#">Services</a></li>
      <li><a href="#">Contact</a></li>
    </ul>
  </nav>
  
  <main>
    <section>
      <h2>About Us</h2>
      <p>This is a simple website to demonstrate HTML, CSS, and JavaScript.</p>
    </section>
    
    <section>
      <h2>Services</h2>
      <ul>
        <li>Web Design</li>
        <li>Graphic Design</li>
        <li>SEO Services</li>
      </ul>
    </section>
  </main>
  
  <footer>
    <p>&copy; 2024 Simple Website. All Rights Reserved.</p>
  </footer>
  
  <script src="script.js"></script>
</body>
</html>
Leave a Comment