<xsl:stylesheet version="1.0"
                xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

<xsl:template match="/">

  <table id="blogroll">
       <xsl:for-each select="opml/body/outline">
                <tr>
                    <td>
                      <b><a href="{@htmlUrl}"><xsl:value-of select="@title"/> </a></b><br/>
<xsl:value-of select="@description"/>
                    </td>
                    <td>
                      <a
 href="{@xmlUrl}" target="_blank"><img
 src="http://www.roell.net/xml.gif" width="36" height="14"
 alt="XML" border="0" /></a>
                    </td>
                </tr>
            </xsl:for-each>

  </table>
</xsl:template>

</xsl:stylesheet>