<xsl:stylesheet version="1.0"
  xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

  <xsl:template match="Products">
    <p>
    <table width="100%" border="1"
      cellpadding="10" cellspacing="0">
      <tr>
        <td bgcolor="yellow">
          <b><xsl:value-of select="ProductName" /> </b>
        </td>
      </tr>
      <tr bgcolor="#eeeeee">
        <td>
          <b>Price:</b>
          $<xsl:value-of select="UnitPrice" />
        </td>
      </tr>
    </table>
    </p>
  </xsl:template>
</xsl:stylesheet>
