What is HTML?
HTML stands for HyperText Markup Language. It is used to create web pages and structure content
like text, images, and links.
Basic Structure of HTML
<!DOCTYPE html>
<html>
<head>
<title>My Page</title>
</head>
<body>
<h1>Hello World</h1>
</body>
</html>
Common HTML Tags
Heading: <h1> to <h6>
Paragraph: <p>
Link: <a href="">
Image: <img src="">
Lists in HTML
Ordered List: <ol>
Unordered List: <ul>
Forms in HTML
Used to collect user input like name, password, etc.
Advantages
Easy to learn, supported by all browsers, free to use.
Disadvantages
Cannot create dynamic pages alone, needs CSS and JavaScript.