<?xml version="1.0" ?> 
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:template match="/">
<html>
<head>
<title>Songs From the UK</title> 
</head>
<body bgcolor="white">

<h2>Songs from the UK</h2> 
<xsl:apply-templates select="CATALOG/CD/COUNTRY[.='UK']/.." /> 
</body>
</html>
</xsl:template>
<xsl:template match="CD">

<xsl:value-of select="TITLE" />
by
<xsl:value-of select="ARTIST" /> 
<br />

</xsl:template>
</xsl:stylesheet>