<!-- simple style sheet, based om auction sample -->
<xsl:stylesheet xmlns:xsl="http://www.w3.org/TR/WD-xsl">
<xsl:template match="/">
  <TABLE>
       <xsl:for-each select="movies/director/film">
     <TR>
       <TD>
          Movie:
          <xsl:value-of select="title" />
       </TD>
       <TD>
          <xsl:value-of select="year" />
       </TD>
    </TR>
</xsl:for-each>
   </TABLE>
</xsl:template>
</xsl:stylesheet>







