<xsl:stylesheet xmlns:xsl="http://www.w3.org/TR/WD-xsl">
<xsl:template match="/">
<html>
  <body>
<h1>XML Books</h1>
      <xsl:for-each select="catalog/book">
	  <p>
	    <a>
		<xsl:attribute name="href"><xsl:value-of select="cover/@href"/></xsl:attribute>

		<img>
		  <xsl:attribute name="src"><xsl:value-of select="cover/html:img/@src"/></xsl:attribute>
		</img>
	    </a><br />

          <xsl:value-of select="author"/><br />
		<a>
		<xsl:attribute name="href"><xsl:value-of select="cover/@href"/></xsl:attribute>

          <xsl:value-of select="title"/><br />

	    </a>
          <xsl:value-of select="pubyear"/><br />
          <xsl:value-of select="publisher"/><br />
          <xsl:value-of select="isbn"/><br />
          <xsl:value-of select="price"/><br />
	  </p>
      </xsl:for-each>
  </body>
</html>
</xsl:template>
</xsl:stylesheet>
