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

