<?xml version="1.0" encoding="Shift_JIS"?>
<!-- created by csv2xml -->
<xsl:stylesheet xmlns:xsl="http://www.w3.org/TR/WD-xsl" >

<xsl:template match="/">
  <html>
    <header>
      <title>売上</title>
    </header>
    <body>
      <xsl:apply-templates select="売上"/>
    </body>
  </html>
</xsl:template>

<xsl:template match="売上">
  <table border="3">
  <tr>
    <th>品名</th>
    <th>単価</th>
    <th>数量</th>
  </tr>
  <xsl:for-each select="項目">
    <tr>
      <td><xsl:value-of select="品名"/></td>
      <td><xsl:value-of select="単価"/></td>
      <td><xsl:value-of select="数量"/></td>
    </tr>
  </xsl:for-each>
  </table>
</xsl:template>

</xsl:stylesheet>

