<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:rss="http://purl.org/rss/1.0/" xmlns="http://www.w3.org/1999/xhtml">
   <xsl:output method="html"/>
    <xsl:template match="rss">
        <html>
            <head>
                <meta http-equiv="content-type" content="text/html; charset=UTF-8" />
                <style type="text/css">
div.channel-title { font-size: 80%; font-family: TheneeUniTx, latha}
</style>
                <style type="text/css">
div.item-title { font-size: 80%; font-family: TheneeUniTx, latha}
</style>
                <style type="text/css">
div.item-description { font-size: 80%; font-family: TheneeUniTx, latha} 
</style>
                <style type ="text/css">
div.box { border: .25pt solid; border-color: #008000; padding: .3em .6em; background-color: #F2F9F3; margin: 0.1em 4em}
</style>
                <title>
                    <xsl:for-each select="channel">
                        <xsl:value-of select="description"/>
                    </xsl:for-each>
                </title>
            </head>
            <body>
                <xsl:for-each select="channel">
                    <center>
                        <div class="channel-title">
                            <xsl:element name="a">
                                <xsl:attribute name="href"><xsl:value-of select="link"/></xsl:attribute>
                                <xsl:value-of select="title"/>
                                 <xsl:text> (</xsl:text>
                                <xsl:value-of select="pubDate"/>
                                <xsl:text>)</xsl:text>
                            </xsl:element>
                        </div>
                    </center>
                </xsl:for-each>
                <xsl:for-each select="channel/item">
                    <div class="box">
                        <div class="item-title">
                            <p>
                                <xsl:element name="a">
                                    <xsl:attribute name="href"><xsl:value-of select="link"/></xsl:attribute>
                                    <xsl:value-of select="title"/>
                                </xsl:element>
                                <xsl:text> (</xsl:text>
                                <xsl:value-of select="pubDate"/>
                                <xsl:text>)</xsl:text>
                            </p>
                        </div>
                        <div class="item-description">
                            <xsl:value-of select="description"/>
                        </div>
                    </div>
                </xsl:for-each>
            </body>
        </html>
    </xsl:template>
</xsl:stylesheet>