<pre data-sub="prettyprint:_">
        <xsl:template match="/">
        <html>
        <body>
        <table>
        <tr>
        <xsl:for-each select ="*/*[1]/*">
        <td>
        <xsl:value-of select="local-name()" />
        </td>
        </xsl:for-each>
        </tr>
        <xsl:for-each select ="*/*">
        <tr>
        <xsl:for-each select="./*">
        <td>
        <xsl:value-of select="." />
        </td>
        </xsl:for-each>
        </tr>
        </xsl:for-each>
        </table>
        </body>
        </html>
        </xsl:template>
        </pre>