1<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> 2 3 <xsl:include href="include.xsl"/> 4 5 <xsl:param name="owner" select="'Nicolas Eliaszewicz'"/> 6 <xsl:output method="html" encoding="iso-8859-1" indent="no"/> 7 <xsl:template match="collection"> 8 Hey! Welcome to <xsl:value-of select="$owner"/>'s sweet CD collection! 9 <xsl:apply-templates/> 10 </xsl:template> 11</xsl:stylesheet>