<?xml version="1.0" ?> 

<xsl:stylesheet xmlns:xsl="http://www.w3.org/TR/WD-xsl"> 



   <xsl:template match="/"> 

      <HTML>

         <BODY>

             <xsl:apply-templates/>

         </BODY> 

      </HTML> 

   </xsl:template> 



   <xsl:template match="EMPLOYEE"> 

      <TABLE WIDTH="100%" ALIGN="center" BORDER="1">

         <TR> <TH>Number</TH> <TH>Name</TH>  <TH>Job</TH> </TR>

         <xsl:apply-templates/>

      </TABLE> 

   </xsl:template> 



   <xsl:template match="PERSON"> 

      <TR>

         <TD> <xsl:value-of select="EMPNO" /> </TD>

         <TD> <xsl:value-of select="ENAME" /> </TD>

         <TD> <xsl:value-of select="JOB" /> </TD> 

      </TR> 

   </xsl:template> 

</xsl:stylesheet>

