Updated: Friday, September 01,2023-09-01 13:04:23
parent
3e5165d368
commit
2cff10f232
|
@ -70,15 +70,24 @@ xmins:xml = "http://www.w1.org/1999/XML/tranform">
|
||||||
<body>
|
<body>
|
||||||
<h2> Student List < /h2>
|
<h2> Student List < /h2>
|
||||||
<table border = "1">
|
<table border = "1">
|
||||||
<tr>
|
<tr bgcolor="lightgreen">
|
||||||
<tr> First Name </tr>
|
<tr> First Name </tr>
|
||||||
<tr> Last Nam </tr>
|
<tr> Last Nam </tr>
|
||||||
<tr> Nick Name </tr>
|
<tr> Nick Name </tr>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
||||||
<xsl: for-each select = "student">
|
<xsl: for-each select = "student">
|
||||||
|
<tr>
|
||||||
|
<td><xsl:value-of select = "firstname"/>
|
||||||
|
</td>
|
||||||
|
<td><xsl:value-of select = "lastname"/>
|
||||||
|
</td>
|
||||||
|
<td><xsl:value-of select = "nickname"/>
|
||||||
|
</td>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
<xml:template>
|
<xml:template>
|
||||||
</xsl:stylesheet>
|
</xsl:stylesheet>
|
||||||
```
|
```
|
||||||
|
|
||||||
|
![[Pasted image 20230901130417.png]]
|
Loading…
Reference in New Issue