1 <?xml version="1.0"?>
   2 <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
   3 <xsl:template match="/">
   4                 <html> 
   5                 <xsl:apply-templates/>
   6                 </html>
   7 </xsl:template>
   8 <xsl:template match="Review">
   9                 <body>
  10                 <xsl:apply-templates select="//About"/>
  11                 </body>
  12 </xsl:template>
  13 <xsl:template match="About">
  14         <xsl:for-each select="Text">
  15 <Br>
  16         <li>
  17                 <font size ="4" color ="Blue">
  18 <xsl:value-of select="."/>
  19                 </font>
  20                 </li>
  21         </Br>
  22                 <xsl:apply-templates/>
  23                 </xsl:for-each>
  24 </xsl:template>
  25 </xsl:stylesheet>