<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
	<xsl:template match="/rss">
		<html>
			<head/>
			<body>
				<div align="center" style="font-family: Arial,sans-sherif; color:rgb(128,128,128); font-size:30px" id="style1">
					<xsl:value-of select="channel/title"/>
				</div>
				
				<table border="2">
				<xsl:for-each select="channel/item">
					
						<tr>
							
							<td >
							<xsl:element name="a">
								<xsl:attribute name="href">
									<xsl:value-of select="link"/>
								</xsl:attribute>
								<xsl:value-of select="title"/>    // I WANT THIS BLUE
							</xsl:element>
							<br/><br/>
								
							<xsl:value-of select="pubDate"/>      // THIS AS GREY
							<br/><br/>
							<xsl:element name="img">
								<xsl:attribute name="src">
									<xsl:value-of select="description/p/a/img/@src"/>
								</xsl:attribute>
								<xsl:attribute name="align">
										<xsl:value-of select="description/p/a/img/@align"/>
									</xsl:attribute>
									<xsl:attribute name="height">
										<xsl:value-of select="description/p/a/img/@height"/>
									</xsl:attribute>
									<xsl:attribute name="width">
										<xsl:value-of select="description/p/a/img/@width"/>
									</xsl:attribute>
									<xsl:attribute name="alt">
										<xsl:value-of select="description/p/a/img/@alt"/>
									</xsl:attribute>
									<xsl:attribute name="border">
										<xsl:value-of select="description/p/a/img/@border"/>
									</xsl:attribute>
									<xsl:value-of select="img"/>
								</xsl:element>
								<style type="color:blue"/>
									<xsl:value-of select="description/p"/>  //THIS AS BLUE 
								
							</td>
						</tr>
					
				</xsl:for-each>
				</table>
			</body>
		</html>
	</xsl:template>
</xsl:stylesheet>
