HTML ke Basic Tags aur Structure

HTML me har content ko hum tags ke andar likhte hain. Ye tags web page ke alag-alag parts ko define karte hain. Aaiye kuch important basic tags aur unka structure samjhte hain:

Basic HTML Document Structure

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8">
    <title>Page Title</title>
  </head>
  <body>
    <h1>Heading 1</h1>
    <p>Ye ek paragraph hai.</p>
  </body>
</html>

Important Tags

Example: Basic Page with Tags

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8">
    <title>My Webpage</title>
  </head>
  <body>
    <h1>Welcome to RKTechGame</h1>
    <p>Ye mera pehla webpage hai jisme main basic HTML tags use kar raha hoon.</p>
    <a href="https://www.example.com">Visit Example</a>
    <br>
    <ul>
      <li>HTML sikho</li>
      <li>CSS sikho</li>
      <li>JavaScript sikho</li>
    </ul>
  </body>
</html>