Definition: HTML (HyperText Markup Language) is the standard language for creating web pages. It describes the structure and content using tags/elements.
// Basic skeleton (must have in every page)
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My Awesome Page</title>
</head>
<body>
<h1>Hello World!</h1>
<p>This is my first real HTML page in 2026.</p>
</body>
</html>