<?xml version="1.0" encoding="ISO-8859-1"?>
<catalog> <cd> <title>Empire Burlesque</title> <artist>Bob Dylan</artist> <country>USA</country> <company>Columbia</company> <price>10.90</price> <year>1985</year> </cd> <cd>...</cd>
</catalog>

<?xml version="1.0" encoding="ISO-8859-1"?>
<xsl:stylesheetversion="1.0"xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> <xsl:templatematch="/"> <html> <!DOCTYPE html>... <body> <h2>My CD Collection</h2> <table border="1"> <tr bgcolor="#9acd32"> <th>Title</th> <th>Artist</th> </tr> <xsl:for-eachselect="catalog/cd"> <tr> <td> <xsl:value-ofselect="title"/> </td> <td> <xsl:value-ofselect="artist"/> </td> </tr> </xsl:for-each> </table> </body> </html> </xsl:template>
</xsl:stylesheet>