テーブルのセルを横に結合する

名前 test test
test test
<table>
  <thead>
      <th>名前</th>
      <th>test</th>
      <th>test</th>
  </thead>

  <tbody>
    <tr>
      <td>test</td>
      <td colspan=2>test</td>
    </tr>
  </tbody>
</table>
セルを横に結合するには、
<td colspan=結合するセル数>セルの内容<td>

の形式で記入します。