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

<xsl:template match="/">

    <html>
		      <head>
					        <title>Name list</title>
									      </head>
															<body>
												      <table>
															        <tr>
																			          <th>Given Name</th>
																								          <th>Family Name</th>
																													        </tr>
																																	        <xsl:for-each select="/people/person">
																																					          <tr>
																																										            <td>
																																																              <xsl:value-of select="givenName"/>
																																																							            </td>
																																																													            <td>
																																																																			              <xsl:value-of select="familyName"/>
																																																																										            </td>
																																																																																          </tr>
																																																																																					        </xsl:for-each>
																																																																																									      </table>
															</body>
																																																																																												    </html>

</xsl:template>


</xsl:stylesheet>
