<?xml version="1.0" encoding="ISO-8859-1"?>

<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
	version="1.0">

<xsl:output indent="yes"/>

<xsl:template match="resultados">
	<html>
		<head>
			<title>Generando HTML desde un XML</title>
		</head>
		<body>
			<table  border="1" cellpadding="2" cellspacing="3">
				<tr bgcolor="#F5F4EB">
					<td><b>Concepto</b></td>
					<td><b>Valor</b></td>
				</tr>
				<xsl:apply-templates select="item"/>
			</table>
		</body>
	</html>
</xsl:template>

<xsl:template match="item">
	<tr>
		<td><xsl:value-of select="@nombre"/></td>
		<td><xsl:value-of select="."/></td>
	</tr>
</xsl:template>

</xsl:stylesheet>