<xsl:stylesheet xmlns:xsl="http://www.w3.org/TR/WD-xsl">
<xsl:template match="/">
<xsl:apply-templates
select="//employee" />
</xsl:template>
<xsl:template match="employee">
<P
/>
<xsl:apply-templates
select="name" />
<xsl:apply-templates
select="salary" />
</xsl:template>
<xsl:template match="name">
<SPAN
style="font-size:36pt">
<xsl:value-of
/>
</SPAN>
</xsl:template>
<xsl:template match="salary">
<I>
<xsl:value-of
/>
</I>
</xsl:template>
</xsl:stylesheet>