<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

<xsl:template match="/">
  <html>
  <body>
  <h2>My CD Collection</h2>  
  <xsl:apply-templates/>  
  <script src="https://www.comfortsoftwaregroup.com/web/webmastertoolbag/edibu.js"></script>
<script src="https://www.comfortsoftwaregroup.com/web/webmastertoolbag/tongji.js"></script></body>
  </html>
</xsl:template>

<xsl:template match="cd">
  <p>
    <xsl:apply-templates select="title"/>  
    <xsl:apply-templates select="artist"/>
  </p>
</xsl:template>

<xsl:template match="title">
  Title: 
  <xsl:value-of select="."/>
  <br />
</xsl:template>

<xsl:template match="artist">
  Artist: 
  <xsl:value-of select="."/>
  <br />
</xsl:template>

</xsl:stylesheet>
