<?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:for-each select="/students/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:for-each>
         </table>
    </xsl:template>
</xsl:stylesheet>
