<?xml version="1.0" encoding="ISO-8859-1"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

<xsl:template match="/">
  <html>
	<STYLE>
		h1{COLOR:gray;FONT-FAMILY:Arial;FONT-SIZE:14pt;TEXT-ALIGN:Center;}
		a{COLOR:Blue;FONT-FAMILY:Arial;FONT-SIZE:12pt;FONT-WEIGHT:Bold;}
		h3{COLOR:Gray;FONT-FAMILY:Arial;FONT-SIZE:10pt;}
		h2{COLOR:Blue;FONT-FAMILY:Arial;FONT-SIZE:12pt;}

	</STYLE>
	<title>
	Stylesheet Example
	</title>
	<body>
	<h1><xsl:value-of select="rss/channel/title"/></h1>
		<table>
	
		<tr>
		<td>
			<table border="1">
			<xsl:for-each select="rss/channel/item">
			<tr>
				<td>
					<a>
					<xsl:attribute name="href">
					<xsl:value-of select="link"/>
					</xsl:attribute>
					<xsl:value-of select="title"/>
					</a>
	
					<h3>
					<xsl:value-of select="pubDate"/>
					</h3>
	
					<h2>
					<xsl:value-of disable-output-escaping="yes" select="description"/>
					</h2>
				</td>
			</tr>
			</xsl:for-each>
			</table>
		</td>
		</tr>
		</table>
	</body>
 </html>
</xsl:template>
</xsl:stylesheet>


