LLMpediaThe first transparent, open encyclopedia generated by LLMs

Hypertext Markup Language

Generated by DeepSeek V3.2
Note: This article was automatically generated by a large language model (LLM) from purely parametric knowledge (no retrieval). It may contain inaccuracies or hallucinations. This encyclopedia is part of a research project currently under review.
Article Genealogy
Parent: Tim Berners-Lee Hop 3
Expansion Funnel Raw 35 → Dedup 15 → NER 11 → Enqueued 11
1. Extracted35
2. After dedup15 (None)
3. After NER11 (None)
Rejected: 4 (not NE: 4)
4. Enqueued11 (None)
Hypertext Markup Language
NameHypertext Markup Language
File ext.html, .htm
Mimetext/html
DeveloperWorld Wide Web Consortium, WHATWG
Latest release versionLiving Standard
GenreMarkup language

Hypertext Markup Language. It is the standard markup language used for creating web pages and applications that are displayed in a web browser. Developed from SGML, it structures content on the World Wide Web through a system of tags and attributes. The language is maintained by the World Wide Web Consortium and the Web Hypertext Application Technology Working Group.

History

The initial proposal for a hypertext system was made by Tim Berners-Lee in 1989 while working at CERN. The first publicly available description, "HTML Tags", was published in 1991, outlining 18 elements. Subsequent development was rapid, with the IETF publishing the first formal specification, HTML 2.0, in 1995. The World Wide Web Consortium later took over development, releasing versions like HTML 3.2 and HTML 4.01. A major shift occurred with the formation of the WHATWG, which began work on HTML5, merging the specification with those for DOM and JavaScript. This effort culminated in HTML5 becoming a W3C Recommendation in 2014, and the language has since evolved as a living standard.

Syntax

The syntax is defined by the use of angle brackets to enclose tags, such as `

` for a paragraph. Most elements are written with a start tag and an end tag, though some, like ``, are void elements. The language originally was designed to be forgiving of syntax errors, a trait of its SGML heritage, leading browsers to implement robust error handling. Modern conventions, encouraged by HTML5, promote the use of a well-formed structure, often validated against a Document Type Definition. Key syntactic features include the use of attributes within start tags and the nesting of elements to create a hierarchical document tree.

Elements and attributes

Core structural elements include `

` for division and `` for inline phrasing. Text-level semantics are provided by elements like `` for emphasis and `` for strong importance. Hyperlinks are created using the `` element with its `href` attribute, while images are embedded with the `` tag using `src`. Form controls, such as ``, `