left up right
Displaying the CD List

Example using xsl:value-of and xsl:template

<xsl:template match="cd">
<pre> 
<xsl:value-of select="artist"/>: <em><xsl:value-of select="title"/></em>
</pre>
</xsl:template>

< xsl:value-of select="" />

<pre>
anartist: <em>atitle</em>
</pre>

Result