<?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="/doc">
 <html>
  <head>
   <title>torna su</title>
   <link rel="stylesheet" type="text/css" href="stile.css" />
  </head>
  <body>
   <xsl:for-each select="sezione"> 
    <a href="#" id="{titolo}"></a> 
    <h1><xsl:value-of select="titolo" /></h1> 
    <p><xsl:value-of select="contenuto" /></p>
    <a href="#{titolo}">torna su</a> 
   </xsl:for-each>
  </body>
 </html>
</xsl:template>
</xsl:stylesheet>
