<?xml version="1.0"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="/">
<html>
<body>
  <h1 style="text-align:'center';color:'gray';font-family:'Arial';font-size:'14pt'"> <xsl:value-of select="rss/channel/title"/></h1>
    <table border="2">
      	<xsl:for-each select="rss/channel/item">
	   <tr>
            <td>
    <table><tr><td>
 <h2 style="color:'darkblue';font-family:'Arial';font-size:'12pt'">
      <a><xsl:attribute name="href">
         <xsl:value-of select="link"/>
         </xsl:attribute><xsl:value-of select="title"/>
      </a>
</h2>
</td></tr>

<tr><td>
  <h3 style="color:'Gray';font-family:'Arial';font-size:'10pt'">
     <xsl:value-of select="pubDate"/>
   </h3>
</td></tr>
<tr><td>
    <xsl:value-of disable-output-escaping="yes" select="description"/>
</td></tr>
</table>
</td></tr>
</xsl:for-each>
</table>
</body>

<style>
	td{color:blue;font-family:Arial}
</style>
</html>
</xsl:template>
</xsl:stylesheet>