<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 />
            This is the first template example!!
      </xsl:template>
</xsl:stylesheet>