<?xml version="1.0" encoding="ISO8859-1"?>
<xsl:stylesheet version='1.0' xmlns:xsl='http://www.w3.org/1999/XSL/Transform'>
<xsl:output method='html' indent='no' encoding="ISO-8859-1"/>
<xsl:template match="/">
	<html>
		<head>
			<title>Ejemplo de WEB XML</title>
		</head>
		<body leftmargin="0" topmargin="0">				
			<p align="center"><xsl:value-of select="listaAlumnos/Texto"/></p>
			<table border="1" align="center" bgcolor="lightgreen">
              			<tr>
                			<td class="titulo" colspan="5">Listado de alumnos</td>
              			</tr> 
              			<tr>
                			<td class="cabecera">Nombre</td>
                			<td class="cabecera">Apellidos</td>
                			<td class="cabecera">DNI</td>
                			<td class="cabecera">Curso</td>
                	              <td class="cabecera">Nota</td>
              			</tr> 
              			<xsl:for-each select="listaAlumnos/alumno">
              			<tr>
                			<td class="texto"><xsl:value-of select="nombre"/></td>
                			<td class="texto"><xsl:value-of select="apellidos"/></td>
                			<td class="texto"><xsl:value-of select="dni"/></td>
                			<td class="texto"><xsl:value-of select="curso"/></td>
               	                 	<td class="texto"><xsl:value-of select="nota"/></td>
              			</tr> 
              			</xsl:for-each>
            		</table>              					
		</body>
	</html>
	</xsl:template>
</xsl:stylesheet>
