<xsl:stylesheet version = '1.0'
          xmlns:xsl='http://www.w3.org/1999/XSL/Transform'>

<xsl:template match="/">
     <html>
     <style type="text/css">
  
  H1 {COLOR="GRAY";}
  
  </style>
     <body>
	<font color="gray">
	<h1 align="center">
       <span>
	
	  <xsl:value-of select="rss/channel/title"/>
	</span>
	</h1>
	</font>
	<table cellpadding="8" border="1">
		<xsl:for-each select="rss/channel/item">
				<tr>	
					<td><font size="5" face="Verdana" color="blue">
					<a>
					<xsl:attribute name="href">
					<xsl:value-of select="link" />
					</xsl:attribute>
					<strong><xsl:value-of select="title"/></strong></a>
					
					
					
					</font>
					<br/><br/>
					<font size="4" face="arial" color="gray">
					<b>
					<xsl:value-of select="pubDate"/>
					<br/>
					</b>
					</font>
					
					<font size="5" color="blue">
					<xsl:value-of select="description" disable-output-escaping="yes"/>
					</font>
					
					</td>
				</tr>
			
			
		
		
		</xsl:for-each>
	</table>
    
     </body>
     </html>
     
</xsl:template>


</xsl:stylesheet>



 
