<?xml version="1.0" encoding="ISO-8859-1"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="html" encoding="iso-8859-1" indent="no"/>
<xsl:template match="/">
<h1><xsl:value-of select="/opml/head/title"/></h1>
<ul>
    <xsl:for-each select="/opml/body//outline">
        <li style="margin: 0.5em 0;"><a href="{@htmlUrl}"><xsl:value-of select="@title"/></a> - <a href="{@xmlUrl}"><span style="background: #ff7f00; border: 1px outset #ff7f00; color: #fff; padding: 1px 3px; font-size: 0.8em;">XML</span></a></li>
    </xsl:for-each>
</ul>
</xsl:template>
</xsl:stylesheet>