<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

<xsl:output method="xml"/>

<xsl:template match="/">

<html>
<head>
	<xsl:for-each select="rss/channel">
	
	<h1>
	<font color="gray" face="Arial" pointsize="14"><center>
	<xsl:value-of select="title"/></center></font></h1> <br /><br /> 
	</xsl:for-each>
</head>
<body>
	<pre>
	<table align="center" border="2">
	 <tr>
	 <td>
		<xsl:for-each select="rss/channel/item">
		<tr><td>
		<table>
		<tr><td ><a><xsl:attribute name="href" >
			    <xsl:value-of select="link"/>
			    </xsl:attribute>
			    <font color="darkblue" face="Arial" pointsize="12"> <b><xsl:value-of select="title"/></b> </font><br /><br /></a>
        			<font color="gray" face="Arial" pointsize="10"><b> <xsl:value-of select="pubDate"/></b></font><br /><br />
				</td>
		<tr><td><font color="blue"  face="Arial" pointsize="12">     
			<xsl:value-of select="description" disable-output-escaping="yes"/></font>	
			</td></tr>
		</tr>
		</table>
		</td></tr>
		</xsl:for-each>
	</td>
	</tr>
        </table>
	 </pre>
</body>
</html>
</xsl:template>
</xsl:stylesheet>