22.1.3 element (XML)
An element in XML is most common kind of markup in an XML document. An element can contain content, typically text or other elements. There are two syntactical forms:
- delimited by a start-tag and an end-tag: <foo>...</foo>
- in case the element is empty, it can be written as <foo/>
Previous