HTML
HTML (noun) means the language used to set out the content and structure of a web page — marking which parts are headings, paragraphs, lists, images, links and so on — using tags written around the text. Example: “If you view the source of any web page you will see its HTML.”
How to Use HTML
Learner’s notesIn plain EnglishHTML is what tells a browser which bits of a page are headings, links, pictures and text.
Uncountable in general use ("some HTML"), countable when referring to files ("an HTML file"). Written in capitals.
HTML is a markup language, not a programming language: it labels content rather than carrying out instructions. It is also an open standard, freely usable and not a trademark or a product owned by anyone.
Trace the full origin ↓Fill the Gap
Can you complete this real example?
If you view the source of any web page you will see its _____.
Etymology
An initialism of hypertext markup language. It was devised by Tim Berners-Lee at CERN around 1990 as part of the original World Wide Web.
Synonyms
View more →Related Words
Frequently Asked Questions
Is HTML a programming language?
No. HTML marks up content — it says "this is a heading, this is a link" — but it cannot make decisions, repeat actions or calculate anything. Programming logic on a web page comes from a language such as JavaScript.
What is the difference between HTML and XML?
HTML has a fixed set of tags with meanings a browser understands, and is designed for displaying documents to people. XML lets you define your own tags and is designed for carrying structured data between systems, with no built-in idea of how anything should look.
What is the difference between HTML and CSS?
HTML defines what is on the page and how it is organised; CSS defines how it is presented. Changing HTML changes the content, changing CSS changes the appearance.