Top Blog(category) contact form

single.php

テーブル(表)

目次

会社概要、比較表などでよく使用する表(テーブル)を作成していきます。

  <h1>会社概要</h1>
  <table>
    <tr>
      <th>会社名</th><td>株式会社サンプル</td>
    </tr>
    <tr>
      <th>所在地</th><td>東京都渋谷区〇〇1-2-3</td>
    </tr>
    <tr>
      <th>代表者</th><td>山田 太郎</td>
    </tr>
    <tr>
      <th>設立</th><td>2020年1月1日</td>
    </tr>
    <tr>
      <th>事業内容</th><td>Web制作、システム開発 等</td>
    </tr>
  </table>

table

tr

th

td