Model structured documents with elements, attributes, namespaces, schemas, parsing, and transformations.
Lessons
Escape special characters with <, &, and friends.
Predefined Entities is easiest to learn by reading the example, changing it, and observing the result.
<?xml version="1.0" encoding="UTF-8"?>
<message>
<text>5 < 10 & 10 > 5</text>
<quote>She said "XML" and 'valid'.</quote>
</message>
<!-- < > & " ' are the 5 predefined entities -->Practice the Predefined Entities example in a small scratch file, then explain what changed and why.