<xsl:stylesheet 
xmlns:xsl="http://www.w3.org/1999/XSL/Transform" 
version="1.0">

<xsl:template match="/">
<html>
<head>

<title>Information about <xsl:value-of select="count(Participants/Participant)" />team member. </title>
</head>
<body>
<h3>Information about <xsl:value-of select="count(Participants/Participant)" />team member.</h3>
<br />
<xsl:apply-templates select="Participants/Participant" />
</body>
</html>
</xsl:template>

<xsl:template match="Participant">
<h3><xsl:value-of select="Name"/></h3>
<p><xsl:value-of select="Description" /></p>
<br />
</xsl:template>

</xsl:stylesheet>
</xsl:stylesheet>

