Model structured documents with elements, attributes, namespaces, schemas, parsing, and transformations.
Lessons
Follow the rules that make a document well-formed.
XML Syntax Rules is easiest to learn by reading the example, changing it, and observing the result.
<?xml version="1.0" encoding="UTF-8"?>
<!-- Well-formed: one root, closed & nested tags, quoted attributes -->
<library>
<book available="true">
<title>Learning XML</title>
</book>
</library>
<!-- NOT well-formed: <book><title>Oops</book></title> -->Practice the XML Syntax Rules example in a small scratch file, then explain what changed and why.