visto che ci siamo aggiungo anche il mio codice che viene visualizzato solo da IE:
<?xml version="1.0" encoding="iso-8859-1"?>
<xsl:template xmlns:xsl="http://www.w3.org/TR/WD-xsl">
<html>
<head>
<title>Free Software for Windows 0.5</title>
<link rel="stylesheet" href="stile.css" type="text/css"/>
</head>
<body>
<xsl:for-each select="radice/programma">
<table border="1">
<tr>
<td width="300px"><a class="tab">Nome:</a> <xsl:value-of select="info/nome"/> </td>
<td width="195px"><a class="tab">Versione:</a> <xsl:value-of select="info/versione"/></td>
<td width="275px"><a class="tab">Categoria:</a> <xsl:value-of select="info/categoria"/></td>
</tr>
<tr>
<td colspan="2"><a class="tab">Sito:</a><a><xsl:attribute name="href"><xsl:value-of select="info/sito"/></xsl:attribute><xsl:value-of select="info/sito"/>
</a></td>
<td class="scarica">Scarica/Installa</td>
</tr>
</table>
</xsl:for-each>
</body>
</html>
</xsl:template>