In a well-formed XML document, there is the only root element, i.e. the top level of the XML element hierarchy. The root element is in turn a child of the document root. The document root is the top level of the XML node hierarchy i.e. contains all other nodes (such as the comment node, processing instruction node etc.) in the XML document (including the root element).
In the example belows, thr root element is greetings, but the document root contains greetings node and a comment node.
<?xml version="1.0" ?>
<!-- comments -->
<greetings>
<greeting language="english">Hello</greeting>
<greeting language="english">World</greeting>
</greetings>