Created
September 7, 2021 20:44
-
-
Save 5bhuv4n35h/89f28fb5d8a921a85207af7656b1bbf9 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="iso-8859-1"?> | |
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> | |
<xsl:template match="/"> | |
<html> | |
<head> | |
<title>books</title> | |
</head> | |
<body> | |
<table border="1"> | |
<tr> | |
<th>title</th> | |
<th>author</th> | |
<th>isbn</th> | |
<th>publisher</th> | |
<th>edition</th> | |
<th>price</th> | |
</tr> | |
<xsl:for-each select="books/book"> | |
<tr> | |
<td bgcolor="green"> | |
<xsl:value-of select="title"/> | |
</td> | |
<td bgcolor="red"> | |
<xsl:value-of select="author"/> | |
</td> | |
<td bgcolor="cyan"> | |
<xsl:value-of select="isbn"/> | |
</td> | |
<td bgcolor="yellow"> | |
<xsl:value-of select="publisher" /> | |
</td> | |
<td bgcolor="silver"> | |
<xsl:value-of select="edition" /> | |
</td> | |
<td bgcolor="blue"> | |
<xsl:value-of select="price" /> | |
</td> | |
</tr> | |
</xsl:for-each> | |
</table> | |
</body> | |
</html> | |
</xsl:template> | |
</xsl:stylesheet> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment