JSFiddle - React, Tailwind, and code Playground

by cs09g

HTML

<?xml version="1.0" encoding="UTF-8"?>
<xsl:transform version="1.0"
 xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="/">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Student Details</title>
</head>
<body>
<center>
<table border="1">
<caption>Student Details</caption>
<tr>
<th>Name</th><th>Date of birth</th><th>Register No</th><th>Course</th>
</tr>
<xsl:for-each select="/studInfo/stud">
<tr>
<td><xsl:value-of select="name"/></td>
<td><xsl:value-of select="dob"/></td>
<td><xsl:value-of select="rno"/></td>
<td><xsl:value-of select="course"/></td>
</tr>
</xsl:for-each>
</table>
</center>
</body>   
</html>    
</xsl:template>    
</xsl:transform>