HTML Introduction
What is HTML?
HTML describes the structure of a page. It is not a programming language — it is a markup language made of elements (tags).
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>My first page</title>
</head>
<body>
<h1>Hello, HackifyTech</h1>
<p>Learning HTML step by step.</p>
</body>
</html>
Browsers read this tree and display headings, text, and media accordingly.