
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="/">
<html>
<head><title>RSS viewer</title>
<style tye="text/css">
.description
{ color: blue;
 font-size: 14;
 font-family: Arial;
 }
</style>
</head>

<body>
<font family="Arial" size="4" color ="gray"><center><b><xsl:value-of select="rss/channel/title"/></b></center></font>
<br />
<table border="1">

<xsl:for-each select="rss/channel/item">
<tr>
    <td>
        <a><xsl:attribute name="HREF">
               <xsl:value-of select="link"/>
           </xsl:attribute>
                <xsl:value-of select="title"/>
        </a>
	<p style="font-family:arial;font-size:60%;color:gray"><xsl:value-of select="pubDate"/></p>
	<span class="description"><xsl:value-of select="description" disable-output-escaping="yes"/></span>
    </td>
</tr>
</xsl:for-each>
</table></body>

</html>
</xsl:template>
</xsl:stylesheet>
