Building Well-Formed XML Document Structure


An XML Declaration should begin the document
<?xml version="1.0" standalone="yes"?>

Include one or more elements
<?xml version="1.0" encoding="UTF-8"?>
<DOCUMENT>
<GREETING>Hello from XML</GREETING>
<MESSAGE>Welcome to Programing XML in Java</MESSAGE>
</DOCUMENT>