<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="/">
<html>
<head><title>Student Database</title></head>
<body>

<p>
<table border="1" cellpadding="20" cellspacing="12">
	<xsl:for-each select="student_db/student">
		<tr>
			<td style="color: red"><xsl:value-of select="usn"/></td>
			<td style="color: blue"><xsl:value-of select="name"/></td>
		</tr>
	</xsl:for-each>
</table>
</p>
</body>
</html>
</xsl:template>
</xsl:stylesheet>
