<?xml version="1.0"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/TR/WD-xsl">
<xsl:template match="/">
<xsl:element name="BOOKS"/>
<xsl:element name="BOOKS/ORDER"/>

<html>
<body>
<table border="1" cellpadding="3">
<tr>
  <th>Title</th> 
  <th>Author</th> 
  <th>Quantity</th> 
  <th>ISBN Number</th> 
  <th>Language</th> 
  </tr>
<xsl:for-each select="BOOKS/ORDER">
<TR>
<TD>
  <xsl:value-of select="TITLE" /> 
  </TD>
<TD>
  <xsl:value-of select="AUTHOR" /> 
  </TD>
<TD>
  <xsl:value-of select="QTY" /> 
  </TD>
<TD>
  <xsl:value-of select="ISBN" /> 
  </TD>
<TD>
  <xsl:value-of select="LANGUAGE" /> 
  </TD>
  </TR>
</xsl:for-each>
</table>

</body>
</html>
 
</xsl:template>
</xsl:stylesheet>
