<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:output method="html"/>
<xsl:template match="/">
<html>
<body>
<xsl:apply-templates select="memo"/>
</body>
</html>
</xsl:template>
<xsl:template match="memo">
<xsl:apply-templates />
</xsl:template>
<xsl:template match="from">
<p>From:
<xsl:value-of select="."/>
</p>
</xsl:template>
<xsl:template match="to">
<p>To:
<xsl:value-of select="."/>
</p>
</xsl:template>

<xsl:template match="subject">
<p>Re:
<xsl:value-of select="."/>
</p>
</xsl:template>
<xsl:template match="date">
<p>Date:
<xsl:value-of select="@formal"/>
</p>
</xsl:template>
<xsl:template match="content">
<hr />
<p><xsl:value-of select="."/></p>
</xsl:template>
</xsl:stylesheet>