HTML

admin@gmail.com3/19/2026, 8:41:34 PM

Introduction

HTML is the structure of every webpage.

Basic Structure

<!DOCTYPE html>
<html>
  <head>
    <title>My Page</title>
  </head>
  <body>
    <h1>Hello World</h1>
  </body>
</html>

Common Tags

  • Headings: <h1> to <h6>

  • Paragraph: <p>

  • Links: <a>

  • Images: <img>

Semantic HTML

Use meaningful tags like:

  • <header>, <main>, <footer>