Wurzelelement
Wurzelelement, in German terminology, refers to the root element of a structured document or tree. In practice it is the single top‑level element that contains all other elements within the document, and it is often called the document element in English. The term is commonly used in XML and related technologies, but the concept also applies to tree data structures and the Document Object Model (DOM).
In XML the Wurzelelement has special importance. A well-formed XML document must have exactly one root element,
In HTML and XHTML, the root element is typically the html element, which contains the head and
Beyond XML and HTML, the concept appears in general tree data structures, where the root is the
Example: a simple XML document might have <library> as its Wurzelelement, with nested <book> elements inside.