<?xml version="1.0" ?> 
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
 <xsl:template match="/">
  <html>
   <body>
    <table border="0" width="100%" >
     <tr>
      <xsl:for-each select="rss/channel">
       <td align="center"><font face="Arial" size="5" color="#808080"><b>
        <xsl:value-of select="title"/></b>
       </font></td>  
      </xsl:for-each>
      </tr>
      <tr>
       <table border="1" width="100%">
        <xsl:for-each select="rss/channel/item">
         <tr>
	  <td><a>
	   <xsl:attribute name="href">
	    <xsl:value-of select="link"/> 
           </xsl:attribute>	   
   	    <font face="Arial" size="3" color="#0000FF"><b>
             <xsl:value-of select="title"/></b>
	    </font></a><p>
	    <font face="Arial" size="3" color="#808080">
	     <xsl:value-of select="pubDate"/>
	    </font></p>
	    <font face="Arial" size="3" color="#0000FF">
	    <xsl:value-of select="description" disable-output-escaping="yes"/>
	    </font>
	   </td>
           </tr>
          </xsl:for-each>
         </table>	
        </tr>
       </table>
      </body>
     </html>
    </xsl:template>
    </xsl:stylesheet>
  