<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
          xmlns:fo="http://www.w3.org/1999/XSL/Format">
<xsl:template match="/libri">
<html><body>
<table border="1">
 <xsl:for-each select="libro">  
<tr><td><xsl:value-of select="autore"/></td>
<td><xsl:value-of select="titolo"/></td></tr>
 </xsl:for-each>  
</table>
</body>
</html>
</xsl:template>
</xsl:stylesheet>

