July 2002
Intermediate to advanced
864 pages
22h 32m
English
Much like HTML, XML is a markup language with documents composed of tags that “mark up” the data in a document. A typical XML document will contain a large number of these tags, start and end tags, with data contained within the tags. For example, if we were looking at the representation of a name in XML, we might have
<name>John Doe</name>
Here we have two tags— the start tag <name> and the end tag </name>. Tags are a very important part of XML. They are what you use to mark the beginning and ending of elements in your XML documents. The two tags, taken together along with the content between them, constitute an XML element.
We would actually refer to the element by the element type, which is synonymous with the name used in the ...