<?xml version="1.0"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="/">
<html>
<body>
<table border="1"><tr>
<th>Flower</th>
<th>Name</th>
<th>price</th>
<th>height</th>
<th>Season</th>
<th>Conditions</th>
<th>Image</th></tr>
<xsl:for-each select="catalog/plant">
<tr><td><xsl:value-of select="name"/></td>
<td><xsl:value-of select="latin"/></td>
<td><xsl:value-of select="price"/></td>
<td><xsl:value-of select="height"/></td>
<td><xsl:value-of select="season"/></td>
<td><xsl:value-of select="condition"/></td>
<td><xsl:element name="img"><xsl:attribute name="src"><xsl:value-of select="image"/></xsl:attribute></xsl:element></td>
</tr>
</xsl:for-each>
</table>
</body>
</html>
</xsl:template>
</xsl:stylesheet>

