<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

  <xsl:import href="xml-to-string.xsl"/>

  <xsl:template match="/">
    <html>
      <body bgcolor="#FFFFCC">
        <pre style="color: blue; font-weight: bold;">
          <xsl:call-template name="xml-to-string"/>
        </pre>
      </body>
    </html>
  </xsl:template>

</xsl:stylesheet>