<?xml version="1.0"?>

<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

 <xsl:template match="rss">
  <xsl:apply-templates select="channel"/>
 </xsl:template>
 
 <xsl:template match="channel">
  <html>

   <head>
    <title><xsl:value-of select="title"/></title>
   </head>
    
   <body bgcolor="white">
    <h1 align="center"><xsl:value-of select="title"/></h1>
    <h3 align="center"><xsl:value-of select="description"/></h3>
    <dl>
     <xsl:apply-templates select="item"/>
    </dl>
   </body>
  </html>
 </xsl:template>
     
 <xsl:template match="item">
  <dt>
    <a>
     <xsl:apply-templates select="link"/>
     <xsl:value-of select="title"/>
   </a>
  </dt>
  <dd><xsl:value-of select="description"/></dd>
 </xsl:template>

 <xsl:template match="link">
   <xsl:attribute name="href"><xsl:value-of select="."/></xsl:attribute>
 </xsl:template>

</xsl:stylesheet>
