<?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">
        <h1 style="text-align:center;"> CLASS: <xsl:value-of select="@class"/></h1>
        <table align="center" cellpadding="5px" border="1" style="background-color:#DFF0FF;">
            <xsl:apply-templates select="student"/>
        </table>
    </xsl:template>
    
    <xsl:template match="student">
        <tr>
            <td><xsl:value-of select="first_name"/></td>
            <td><xsl:value-of select="last_name"/></td>
            <td><xsl:value-of select="id"/></td>
        </tr>
    </xsl:template>
    
</xsl:stylesheet>
