<?xml version="1.0"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">

<xsl:output
method="html"
encoding="ISO-8859-1"
doctype-public="-//W3C//DTD HTML 4.01//EN"
doctype-system="http://www.w3.org/TR/html4/strict.dtd"
indent="yes" />

<xsl:template match="/">
<html><body>
<table border="1" cellspacing="0" cellpadding="3">
<tr bgcolor="#ffffcc">
  <td>Titre</td>
  <td>Artiste</td>
</tr>

<xsl:for-each select="macompile/mp3">
<xsl:sort select="artiste" order="ascending"/>

<tr>
<td><xsl:value-of select="titre"/></td>
<td><xsl:value-of select="artiste"/></td>
</tr>

</xsl:for-each>

</table>
</body></html>
</xsl:template>

</xsl:stylesheet>
