Model structured documents with elements, attributes, namespaces, schemas, parsing, and transformations.
Lessons
Build a modern syndication feed with Atom.
Atom Feeds is easiest to learn by reading the example, changing it, and observing the result.
<?xml version="1.0" encoding="UTF-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
<title>GizDevCraft Blog</title>
<updated>2026-06-13T09:00:00Z</updated>
<entry>
<title>Learn XML</title>
<link href="https://example.com/xml"/>
<id>urn:uuid:1</id>
</entry>
</feed>Practice the Atom Feeds example in a small scratch file, then explain what changed and why.