Advertisement
Guest User

Untitled

a guest
Apr 29th, 2017
46
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <xsl:stylesheet version="1.0"
  3. xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  4. <xsl:template match="/perguntas">
  5. <html>
  6. <body>
  7. <h2>Passatempos</h2>
  8. <table border="1">
  9. <xsl:for-each select="inquerito/pergunta/resposta">
  10. <td><xsl:value-of select="desc"></td>
  11. </xsl:for-each>
  12. </table>
  13. </body>
  14. </html>
  15. </xsl:template>
  16. </xsl:stylesheet>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement