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>
Leave a Reply