<?xml version="1.0" ?>
<xsl:stylesheet version="1.0"
      xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<!-- xmlns:xsl="http://www/w3/org/TR/WD-xsl" for most versions of Internet Explorer 5 -->
  <xsl:template match="mold">
<html>
<head>
<title>Mold Catalog</title>
</head>
<body bgcolor="#F0F0F0">

<UL>
<LI><font size="4" color="#0000AA">
    <IMG>
	<!-- -->
	<xsl:attribute name="SRC">
	<xsl:value-of select="picture"/>
	</xsl:attribute>
	<!-- -->
    </IMG>

<xsl:text> </xsl:text>
<xsl:value-of select="name"/>
<xsl:text> </xsl:text>
<xsl:value-of select="price"/>
</font></LI>
</UL>

</body>
</html>
</xsl:template>
</xsl:stylesheet>
