# XML Extensible Markup Language - XML - is a markup language standard for documents that aims to be readable for both humans and machines, while separating the *markup* form the *content*. ## Syntax XML content consists of "start", "end" and "empty" **Tags** (E.g.: `
` / `
` / ``), which make up *elements* containing data (E.g.: `Hello, world!` / ``). Elements can contain other elements (child elements) and form a tree: (E.g.: `FirstnameLastname` / ``). Start and empty tags can contain any number of unique *Attributes* consisting of name-value pairs (E.g.: `Logo`). Optionally, XML files can start with an *XML declaration* (E.g.: ``) identifying aspects of the XML content. ## Example: ```xml V5.5-F false 26401 2 60 false 0 ```