<?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="bib/descript" order-by="title">

	<p>
<b class="monored">Title: </b><xsl:value-of select="title"/>
	</p>
<xsl:for-each select="titpage/.">
<p>
<xsl:value-of />
</p>
</xsl:for-each>
<p><b>Collation formula:</b><br/>
<xsl:value-of select="collat/."/>
</p>
<p>
<xsl:value-of select="pagfol/."/>
</p>
     </xsl:for-each>
</body>
Brought to you by <a href="https://4serendipity.com">Andrew Stevens</a>
   </html>
  </xsl:template>
</xsl:stylesheet>
