<?xml version='1.0' encoding='utf-8' ?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:media="http://search.yahoo.com/mrss">
<xsl:template match="/">

<html>
<head>
<style>
		h1{COLOR:Gray;FONT-FAMILY:Arial;FONT-SIZE:14pt;text-align:'center';}
	</style>



</head>
<h1 align='center'><xsl:value-of select="rss/channel/title"/></h1>
<body>
<table border="2">  
<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='blue' size='4' face='Arial'><b><u><xsl:value-of select="title"/></u></b></font><br/><br/></a></td></tr>
 <tr><td>
	<font color='gray' size='2' face='Arial'><b><xsl:value-of select="pubDate"/></b></font></td></tr>
	<tr><td><font color='blue' size='4' face='Arial'><xsl:value-of select="description" disable-output-escaping="yes"/></font></td></tr></table>

</td>
 
</tr>
</xsl:for-each> 
</table> </body> </html>

 </xsl:template>
 </xsl:stylesheet>
