<?xml version="1.0" ?> 
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:template match="/">
<html>
<body>
<h1>Box Score</h1> 
<h2>NCAA</h2> 
<xsl:apply-templates /> 
</body>
</html>
</xsl:template>


<xsl:template match="player">
<p>
<xsl:value-of select="given_name" /> 
<i>
<xsl:value-of select="surname" /> 
</i>
</p>
</xsl:template>

</xsl:stylesheet>
