<xsl:stylesheet xmlns:xsl="http://www.w3.org/TR/WD-xsl">
<xsl:template match="/">
<html>
  <body>
    <table>
      <xsl:for-each select="catalog/book">
        <tr>
          <td><xsl:value-of select="author"/></td>
          <td><xsl:value-of select="title"/></td>
          <td><xsl:value-of select="pubyear"/></td>
          <td><xsl:value-of select="publisher"/></td>
          <td><xsl:value-of select="isbn"/></td>
          <td><xsl:value-of select="price"/></td>
        </tr>
      </xsl:for-each>
    </table>
  </body>
</html>
</xsl:template>
</xsl:stylesheet>
