<?xml version="1.0" ?>
<!-- MyNote.xsl: An XML Style Sheet to map MyNote.xml into html -->
<!-- R.S. Freedman 6 December 1999 -->
<xsl:stylesheet xmlns:xsl="http://www.w3.org/TR/WD-xsl">
<xsl:template match="/">	<!-- match all of note -->
<html>				<!-- insert html tags  -->
<body>
<xsl:for-each select="note">
    <table border="2" bgcolor="yellow">
      <tr>			<!-- insert table headings -->
        <th>To</th>
        <th>From</th>
        <th>Heading</th>
      </tr>
      <tr>			<!-- get values from note -->
        <td><xsl:value-of select="to"/></td>
        <td><xsl:value-of select="from"/></td>
        <td><xsl:value-of select="heading"/></td>
      </tr>
  </table>
  <h2> The Message: <xsl:value-of select="body"/></h2>
  <hr/><hr/>
</xsl:for-each>			<!-- close all wffs -->
</body>
</html>
</xsl:template>
</xsl:stylesheet>
