1 <?xml version="1.0" encoding="utf-8"?>
2 <xsl:stylesheet version="1.0"
3 xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
4 <xsl:template match="/">
7 <h2>Mi coleccion de CD</h2>
10 <th align="left">Titulo</th>
11 <th align="left">Artista</th>
13 <xsl:for-each select="catalogo/cd">
15 <td><xsl:value-of select="titulo"/></td>
16 <td><xsl:value-of select="artista"/></td>