<?xml version="1.0" ?> 
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:template match="/">
<html>
<head>
<style type="text/css">body {font-family:Garamond, serif;} h2 {font-style:italic; font-size:1.5em;} table {border-width:medium; border-style:solid;} td {border-width:thin; border-style:solid;}</style> 
</head>
<body>

<xsl:apply-templates /> 

</body>
</html>
</xsl:template>



<xsl:template match="boxscore">
<h2>
<xsl:value-of select="season" /> 

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

<table cellpadding="3">
<tr align="center">
<td>Name</td>
<td>Points</td>
<td>Blocks</td>
<td>Assists</td>
<td>Free Throws</td>
<td>3-points</td>
</tr>

<xsl:for-each select="player">
<tr align="center">
<td>
<xsl:value-of select="given_name" />
<xsl:value-of select="surname" /> 
</td>
<td>
<i>
<xsl:value-of select="item1" /> 
</i>
</td>
<td>
<xsl:value-of select="item2" /> 
</td>
<td>
<xsl:value-of select="item3" /> 
</td>
<td>
<xsl:value-of select="item4" /> 
</td>
<td>
<xsl:value-of select="item5" /> 
</td>
</tr>
</xsl:for-each>
</table>
</xsl:template>
</xsl:stylesheet>
