Root element

All XML documents form a tree structure.

All XML Documents must have exactly one root element. Example:


  <root>
   <paragraph>text</paragraph>
   <paragraph>text</paragraph>
  </root>

A commonly used synonym for "root" is "document element".

practice

Add a root element to your document. Remember to use an appropriate semantic to describe the element content. In this case, since this is the root element, the semantic should describe the content of the whole document.