Code
xml
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<!-- Well-formed XML must:
1. Have a single root element
2. Nest tags properly (close in reverse order)
3. Quote all attribute values
4. Use unique attribute names per element
5. Escape & < > as & < > -->
<rss version="2.0">
<channel>
<title>Feed</title>
<link>https://example.com</link>
<description>A valid, well-formed XML document</description>
</channel>
</rss>