Introduction XML Tutorial

 
    Bond
    JK
    James
 
Data from the beginning of a start-tag to the end of an end-tag is called an element. 
is a start-tag
is an end-tag 
Johnis an element 
The text between the start-tag and end-tag of an element is called the element content. 
If the content is just data, not other elements, the element content is referred to as parsed character data, or PCDATA.
PCDATA is also referred as with "text content" or "text node." 
You can include a space before the closing > of a tag
 
    Bond
    JK
    James
 
or 
 
Bond
JK
James
 
You cannot put a space after the opening < character in a tag, or the / character in an end-tag
Therefore, the following is not proper XML syntax: 
< first >Bond< /first > 
Neither is this: 
< first >Bond< / first >