<?xml version="1.0"?>

<xsl:stylesheet xmlns:xsl="http://www.w3.org/TR/WD-xsl">
  <xsl:template match="/">
<html>
   <head>
	   <title></title>
<link rel="stylesheet" href="1.css" type="text/css"/>
   </head>
   <body>

      <xsl:for-each select="collection/book" order-by="title">

	<h2 >
<span class="monored">Title:</span> <xsl:value-of select="title"/>
	</h2>

<p>
<strong>Year of first publication::</strong> <xsl:value-of select="year/."/>
</p>

<p><strong>Publisher: </strong>
<xsl:value-of select="publisher/."/>
</p>
<p>
<strong>Note:</strong> <xsl:value-of select="note/."/>
</p>
<p>
<strong>Amazon URL:</strong> <a><xsl:attribute name="href"><xsl:value-of select="amazon/."/></xsl:attribute> 
<xsl:value-of select="amazon/."/></a>
</p>
<p>
<strong>Price at Amazon:</strong> 

<xsl:value-of select="amazon/@price" />
	
</p>
     </xsl:for-each>
</body>
   </html>
  </xsl:template>
</xsl:stylesheet>
