tableタグで表を作る

<table>
  <thead>
      <tr>
          <th>商品</th>
          <th>値段</th>
      </tr>
  </thead>
  <tbody>
      <tr>
          <td>りんご</td>
          <td>200円</td>
      </tr>
      <tr>
          <td>オレンジ</td>
          <td>150円</td>
      </tr>
  </tbody>
</table>