<?xml version='1.0'?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/TR/WD-xsl">
<xsl:template match="/">
  <html>
  <body>
    <p align="center"> This is an example of using a XSL style sheet with an XML file</p>
    <p></p>
    <table border="2" align="center" bgcolor="#E0E0E0">
      <tr>
        <th>Name</th>
        <th>Age</th>
        <th>Sex</th>
        <th>Height</th>
        <th>Weight</th>
      </tr>
      <xsl:for-each select="TABLE/CLASS">
      <tr>
        <td><xsl:value-of select="Name"/></td>
        <td><xsl:value-of select="Age"/></td>
        <td><xsl:value-of select="Sex"/></td>
        <td><xsl:value-of select="Height"/></td>
        <td><xsl:value-of select="Weight"/></td>
      </tr>
      </xsl:for-each>
    </table>
  </body>
  </html>
</xsl:template>
</xsl:stylesheet>