<?xml version="1.0" encoding="ISO-8859-1"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

<xsl:template match="songs">
  <html>
  <body>
  <h2>SONGS</h2>  
  <xsl:apply-templates/>  
  </body>
  </html>
</xsl:template>

<xsl:template match="cd">
  <br><b>
	Artist: 
    <xsl:apply-templates select="artist"/>  
  </b></br>
  <br>
	Title: 
    <xsl:apply-templates select="title"/>
  </br>
  <br>
	Production Date: 
    <xsl:apply-templates select="production"/>
  </br>
  <br>
	Genre:
    <xsl:apply-templates select="genre"/>
  </br>
</xsl:template>
</xsl:stylesheet>

