<?xml version="1.0"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

  <xsl:template match="/">
<html>
   <head>
	   <title></title>
   </head>
   <body>

<xsl:for-each select="bib/descript">
	<xsl:sort select="title"/>
	<p>
	<strong>Title:</strong> <xsl:value-of select="title"/>
	</p>
		
		<p>
		<xsl:value-of select="titpage/." />
		</p>
		
	<p>Collation formula:<br />
	<xsl:value-of select="collat/."/>
	</p>
	<p>
	<xsl:value-of select="pagfol/."/>
	</p>
</xsl:for-each>
Brought to you by <a href="https://4serendipity.com">Andrew Stevens</a>
</body>
   </html>
  </xsl:template>
</xsl:stylesheet>
