<?xml version="1.0"?> 
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> 
<xsl:template match="/"> 
      
   <xsl:for-each select="recenttracks/track">
   <div class="recenttracks">
      <table class="recenttracks_table">   
      <tr>
      <td class="track_name">
         <a class="track_name">
         <xsl:attribute name="href"><xsl:value-of select="url"/></xsl:attribute>
         <xsl:attribute name="target">new</xsl:attribute>
         <xsl:value-of select="name"/>
         </a>
      </td>
      </tr>
      
      <tr>
      <td class="track_artist">
         <xsl:value-of select="artist"/>
      </td>
      </tr>

      <tr>
      <td class="track_album">
         <xsl:value-of select="album"/>
      </td>
      </tr>
      </table>
   </div>
   </xsl:for-each>
   
   </xsl:template>   

</xsl:stylesheet>
