<xsl:stylesheet version="1.0" 
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

<xsl:template match="/">
	<html>
		<head>
			<title>Taidekokoelma</title>
		</head>
		
		<body>
			<xsl:for-each select="//teos">

			<h1>Taideteos, jonka on tehnyt
			<xsl:value-of select="artisti/nimi" /> 
			[<xsl:value-of select="artisti/opiskelijanumero" />]</h1>
			<svg xmlns="http://www.w3.org/2000/svg" 
			width="100%" height="100%"
			version="1.1">

			
			<xsl:for-each select="ympyra">
				<circle r="{sade}" cx="{x}" cy="{y}" 
				fill="{vari}"></circle>
			</xsl:for-each>
			
			<xsl:for-each select="nelikulmio">
				<rect width="{leveys}" height="{pituus}" 
				x="{x}" y="{y}" fill="{vari}"></rect>
			</xsl:for-each>
			
			</svg>
			</xsl:for-each>
		</body>
	</html>

</xsl:template>
</xsl:stylesheet>
