Model structured documents with elements, attributes, namespaces, schemas, parsing, and transformations.
Lessons
Set the version, encoding, and standalone declaration.
The XML Declaration & Prolog is easiest to learn by reading the example, changing it, and observing the result.
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<note>
<to>Student</to>
<from>Teacher</from>
<body>Remember the XML declaration goes on line one.</body>
</note>Practice the The XML Declaration & Prolog example in a small scratch file, then explain what changed and why.