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

<xsl:template match="class">
    <html>
    <body>
    <xsl:apply-templates select="student"/>
    </body>
    </html>
</xsl:template>

<xsl:template match="student">
    <p>
  <xsl:value-of select="@id"/>-
    Found a learner!
  <xsl:value-of select="."/>
    </p>
</xsl:template>
</xsl:stylesheet>
