HTML Basics Notes for Beginners
What is HTML?
HTML ka full form hai:
HyperText Markup Language
HTML webpages banane ke liye use hoti hai.
Basic Structure of HTML
<!DOCTYPE html>
<html>
<head>
<title>My Page</title>
</head>
<body>
<h1>Hello World</h1>
</body>
</html>
Important HTML Tags
Heading Tag
<h1>This is Heading</h1>
Paragraph Tag
<p>This is a paragraph.</p>
What is HTML?
HTML ka full form hai:
HyperText Markup Language
HTML webpages banane ke liye use hoti hai.
Basic Structure of HTML
<!DOCTYPE html>
<html>
<head>
<title>My Page</title>
</head>
<body>
<h1>Hello World</h1>
</body>
</html>
Important HTML Tags
Heading Tag
<h1>This is Heading</h1>
Paragraph Tag
<p>This is a paragraph.</p>