What is HTML?

HTML (HyperText Markup Language) is the standard language used to create the structure of web pages.
It uses tags (like <p>, <h1>, <img>) to define elements.

✔ Example:

<!DOCTYPE html>
<html>
<head>
  <title>My First Page</title>
</head>
<body>
  <h1>Hello, World!</h1>
  <p>This is a paragraph.</p>
</body>
</html>

Comments

Leave a Reply

Your email address will not be published. Required fields are marked *