html, html kya hei?, html full course, html for beginners, html tutorial for beginners #html #css

HTML (HyperText Markup Language) ek markup language hai jo web pages banane ke liye use hoti hai. Yeh web content ko structure aur format dene mein madad karti hai. HTML tags ka istemal karke text, images, links, tables, forms, aur doosri elements ko define kiya ja sakta hai.

HTML ka basic structure kuch is tarah hota hai:

```html
<!DOCTYPE html>
<html>
<head>
    <title>Page Title</title>
</head>
<body>
    <h1>Heading</h1>
    <p>This is a paragraph.</p>
</body>
</html>
```

- `<!DOCTYPE html>`: Document type declaration jo browser ko batata hai ki HTML5 version use ho raha hai.
- `<html>`: Puri HTML document ka root element.
- `<head>`: Document ke metadata ko contain karta hai, jisme `<title>` tag bhi hota hai jo browser tab ka title set karta hai.
- `<body>`: Visible content ko contain karta hai jaise headings (`<h1>`), paragraphs (`<p>`), images, links, etc.

HTML web development ka ek basic aur important component hai.

Comments