<?xml version="1.0" encoding="shift_jis"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns="http://www.w3.org/1999/xhtml1/strict">
        <xsl:template match="document">
                <html>
                  <body>
                   <xsl:apply-templates/>
                  </body>
                </html>
        </xsl:template>
        <xsl:template match="title">
                <h1><xsl:value-of select="."/></h1>
        </xsl:template>
        <xsl:template match="para">
                <p><xsl:value-of select="."/></p>
        </xsl:template>
</xsl:stylesheet>
