HTML
HTML, or HyperText Markup Language, is the markup language used to define the structure and meaning of content in a web document.
HTML organizes headings, paragraphs, links, images, forms, navigation and other page content with elements and attributes. Browsers parse that markup into a document structure that CSS and JavaScript can work with.
Structure before styling
HTML organizes headings, paragraphs, links, images, forms, navigation and other page content with elements and attributes. Browsers parse that markup into a document structure that CSS and JavaScript can work with. In practical terms, HTML belongs to the browser, server or document layer. Knowing that layer is important because it tells you what the term can change, what it cannot change, and where to look when something behaves unexpectedly.
A page described with meaningful elements
A navigation region can be marked up with <nav>, a heading with <h2>, and a destination with <a>. The tags describe what the content is, not how it should look.
Where HTML does the structural work
You do not need to memorize the term in isolation. It becomes useful when you can recognize it in the tool, browser, file or conversation where the concept is doing real work.
HTML and the DOM are different layers
HTML, or HyperText Markup Language, is the markup language used to define the structure and meaning of content in a web document. By contrast, Semantic HTML uses elements according to the meaning and role of the content they contain rather than choosing elements only for appearance. The two can appear in the same project, but they describe different parts of the work and should not be used as interchangeable labels.
The mistake: treating tags as decoration
The common mistake is to use HTML as if it also meant Semantic HTML. That blurs two separate decisions and usually sends troubleshooting in the wrong direction. A better test is practical: View the document outline and inspect the DOM. If the page still makes sense without CSS, the structural HTML is doing useful work.
Why structure survives every redesign
In day-to-day work, HTML matters when you structure headings, links, forms, navigation and media. The practical value is not the vocabulary itself; it is being able to identify the right control, file, setting or decision when the concept becomes relevant.
A navigation region can be marked up with <nav>, a heading with <h2>, and a destination with <a>. The tags describe what the content is, not how it should look. That example is useful because it turns the definition into something you can recognize, test and discuss with other people working on the same project.
Related terms worth learning next
Sources and further reading
Use these references when you need documentation-level detail, specifications or product-specific behavior beyond the plain-English explanation above.