# What is HTML? — HTML

Source: https://www.geekswithgeeks.com/en/html/html-intro

> The markup language behind every web page.

## HyperText Markup Language

**HTML** describes the *structure* of a web page — headings, paragraphs, links, images — using nested **tags**. It's not a programming language; it has no logic or loops.

## HTML, CSS & JavaScript

HTML gives structure, **CSS** gives style, and **JavaScript** gives behaviour. Together they make every website you've ever visited.

## Markup, not programming

HTML has no variables, conditions or math — it only **describes content**. Logic belongs to JavaScript.
