Introduction to HTML

Comments ยท 40 Views

HTML5: HTML5 is the latest version of HTML, introduced with many new features and improvements for multimedia content, form controls, APIs, and more. HTML5 includes new

 

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Simple Web Page</title>
</head>
<body>
  <header>
    <h1>Welcome to My Website!</h1>
    <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>
  </header>
  
  <section id="home">
    <h2>Home Section</h2>
    <p>This is the homepage content.</p>
  </section>

 

  <footer>
    <p>Created by Me - 2024</p>
  </footer>
</body>
</html>

 

Read more
Comments