<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/TR/WD-xsl">
<xsl:template match="/">
<html>
<xsl:apply-templates select="catalog"/>
</html>
</xsl:template>
<xsl:template match="catalog">
<body>
<xsl:apply-templates select="composition"/>
</body>
</xsl:template>
<xsl:template match="composition">
<h3><xsl:value-of select="name"/></h3>
</xsl:template>
</xsl:stylesheet>