<?xml version="1.0"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
    <xsl:template match="/">
        <html>
            <body>
                <xsl:apply-templates/>
            </body>
        </html>
    </xsl:template>

    <xsl:template match="students">
        <h2 style="text-align:center;"> CLASS: <xsl:value-of select="@class"/></h2>
        <table align="center" cellpadding="5px" border="1" style="background-color:#DFF0FF;">
            <xsl:for-each select="/students/student">
            <tr valign="top">
                <td><xsl:value-of select="first_name"/></td>
                <td><xsl:value-of select="last_name"/></td>
                <td><xsl:value-of select="id"/></td>
                <td style="background-color:#FFC;">
                    <table cellpadding="5px">
                        <xsl:for-each select="homeworks/homework">
                        <tr>
                            <td><xsl:value-of select="number"/></td>
                            <td><xsl:value-of select="score"/></td>
                         </tr>
                         </xsl:for-each>
                     </table>
                 </td>
             </tr>
             </xsl:for-each>
         </table>
    </xsl:template>
</xsl:stylesheet>
