<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="html" doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd" doctype-public="-//W3C//DTD XHTML 1.0 Transitional//EN"/>
<xsl:template match="/">
<xsl:element name="html">
<head>
<title><xsl:value-of select="rss/channel/title" /></title>
<link rel="stylesheet" href="./refilter.css" type="text/css"/>
</head>
<body>
 
<xsl:for-each select="rss/channel/item">
<div id="refilter">
	<h1><xsl:value-of select="title" /></h1>
	<h2>Input URL:</h2>
	<p><xsl:value-of select="link" /></p>
	<h2>Error:</h2>
	<p><xsl:value-of select="description" /></p>
</div>
</xsl:for-each>
</body>
</xsl:element>
</xsl:template>



</xsl:stylesheet>