<?xml version="1.0" encoding="iso-8859-1" ?>
<xsl:stylesheet xmlns:xsl = "http://www.w3.org/1999/XSL/Transform" version = "1.0" >
<xsl:output method = "html" />
<xsl:template match = "AAA" >
<link rel="stylesheet" type="text/css" href="style.css" />
<table>
<xsl:for-each select = "BBB">
<tr><td ><xsl:value-of select = "." /></td>
<xsl:for-each select = "@*">
<td><xsl:value-of select = "name(.)" />: <xsl:value-of select = "." /></td>
</xsl:for-each></tr>
</xsl:for-each>
</table>
</xsl:template>
</xsl:stylesheet>