Advertisement
Guest User

Untitled

a guest
May 20th, 2019
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  3. <xsl:template match="/">
  4. <html>
  5. <body>
  6. <h2> HELLO </h2>
  7. <table>
  8. <th>Juicer</th>
  9. <th>Cost</th>
  10. <xsl:for-each select="juicer">
  11. <tr>
  12. <td> <xsl:value-of select="name" /> </td>
  13. <td> <xsl:value-of select="cost" /> </td>
  14. </tr>
  15. </xsl:for-each>
  16. </table>
  17. </xsl:template>
  18. </body>
  19.  
  20. </html>
  21. </xsl:template>
  22. </xsl:stylesheet>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement