<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="xml" omit-xml-declaration="no"
doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"
doctype-public="-//W3C//DTD XHTML 1.0 Strict//EN" />
<xsl:template match="/dati">
 <html>
  <head>
   <title>lista</title>
   <link rel="stylesheet" type="text/css" href="sorgenti_x_articolo/stile.css" />
  </head>
 <body>
 <ul>
  <xsl:for-each select="dato"> 
   <li><xsl:value-of select="@id" />
    <ul>
     <xsl:for-each select="descrizione">
      <li><strong><xsl:value-of select="@etichetta" /></strong>: <xsl:value-of select="@valore" /></li>
     </xsl:for-each> 
    </ul>
   </li>  
  </xsl:for-each>
 </ul>
</body>
</html>
</xsl:template>
</xsl:stylesheet>