<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="html" encoding="iso-8859-1" doctype-public="-//W3C//DTD Xhtml 1.0 Transitional//EN" doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"/>
<xsl:template match="/">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"/>
<link href="style.css" rel="stylesheet" type="text/css" />
</head>

<body>
<table  border="1" cellpadding="2" CELLSPACING="0" width="80%" bordercolor="#000000" bgcolor="white">
<xsl:for-each select="root/products/row">
<tr>
<th class="even" width="10%" align="left" scope="col"><xsl:value-of select="@code"/></th>
<th class="even" width="10%" align="left" scope="col"><xsl:value-of select="@productname"/></th>
<th class="even" width="10%" align="left" scope="col"><xsl:value-of select="@productshortname"/></th>
<th class="even" width="10%" align="left" scope="col"><xsl:value-of select="@tour"/></th>
<th class="even" width="10%" align="left" scope="col"><xsl:value-of select="@tourcode"/></th>
<th class="even" width="10%" align="left" scope="col"><xsl:value-of select="@usespickups"/></th>
<th class="even" width="10%" align="left" scope="col"><xsl:value-of select="@basecode"/></th>
<th class="even" width="10%" align="left" scope="col"><xsl:value-of select="@basename"/></th>
<th class="even" width="10%" align="left" scope="col"><xsl:value-of select="@groupname"/></th>
<th class="even" width="10%" align="left" scope="col"><xsl:value-of select="@groupcode"/></th>
</tr>
</xsl:for-each>
</table>
</body>
</html>

</xsl:template>
</xsl:stylesheet>

