<?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 List</title>
    </head>
      <body bgcolor="white">
        <h2>Title List</h2>
        <hr/>
        <ol>
         <xsl:for-each select="bibliography/book">
           <li><xsl:value-of select="title"/></li>
         </xsl:for-each>
        </ol>
      </body>
    </html>
  </xsl:template>
</xsl:stylesheet>


