Untitled

 avatar
unknown
plain_text
2 years ago
1.3 kB
5
Indexable
<!DOCTYPE html>
<html>
<head>
  <meta charset="UTF-8">
  <title>Your Web Application</title>
  <link rel="stylesheet" type="text/css" href="styles.css">
</head>
<body>
  <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>
  </header>

  <section class="hero">
    <div class="hero-content">
      <h1>Welcome to Your Web Application</h1>
      <p>A brief description of your application.</p>
      <a href="#" class="cta-button">Get Started</a>
    </div>
  </section>

  <section class="features">
    <div class="feature">
      <img src="feature1.png" alt="Feature 1">
      <h2>Feature 1</h2>
      <p>Description of feature 1.</p>
    </div>

    <div class="feature">
      <img src="feature2.png" alt="Feature 2">
      <h2>Feature 2</h2>
      <p>Description of feature 2.</p>
    </div>

    <div class="feature">
      <img src="feature3.png" alt="Feature 3">
      <h2>Feature 3</h2>
      <p>Description of feature 3.</p>
    </div>
  </section>

  <footer>
    <p>&copy; 2023 Your Web Application. All rights reserved.</p>
  </footer>

  <script src="script.js"></script>
</body>
</html>
Editor is loading...
Leave a Comment