Untitled

 avatar
unknown
html
2 years ago
1.2 kB
3
Indexable
<!DOCTYPE html>
<html>
<head>
  <title>My Awesome Webpage</title>
  <link rel="stylesheet" type="text/css" href="styles.css">
</head>
<body>
  <header>
    <h1>Welcome to My Awesome Webpage</h1>
    <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>
  
  <main>
    <section>
      <h2>About Me</h2>
      <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed at ipsum vel neque tincidunt viverra.</p>
    </section>
    
    <section>
      <h2>Services</h2>
      <ul>
        <li>Service 1</li>
        <li>Service 2</li>
        <li>Service 3</li>
      </ul>
    </section>
    
    <section>
      <h2>Contact Me</h2>
      <form>
        <label for="name">Name:</label>
        <input type="text" id="name" name="name" required>
        <br>
        <label for="email">Email:</label>
        <input type="email" id="email" name="email" required>
        <br>
        <input type="submit" value="Submit">
      </form>
    </section>
  </main>
  
  <footer>
    <p>&copy; 2023 My Awesome Webpage. All rights reserved.</p>
  </footer>
</body>
</html>
Editor is loading...