<?xml version="1.0" encoding="ISO-8859-1"?>

<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

<xsl:template match="/">
  <html>
  <body> 
	
	<h2><center><font color="#808080" face="Arial"><b><xsl:value-of select="rss/channel/title"/></b></font></center></h2>
	
    <table border="1">
	<xsl:variable name="link" select="link" />
  			
	
	<xsl:for-each select="rss/channel/item">
	<tr>
          <td><font face="Arial" color="Darkblue"><b><a href="{link}"><xsl:value-of select="title"/></a></b></font><br/><br/>
	 <font face="Arial" color="Gray" size="3"><h5><xsl:value-of select="pubDate"/></h5></font><br/>
	
	<font face="Arial" color="Blue" size="3"><xsl:value-of select="description" disable-output-escaping="yes" /></font>
	<br/>
	</td>
   </tr>
   </xsl:for-each>
  </table>
 </body>
 </html>
</xsl:template>

</xsl:stylesheet>