zono note

zono note

日々の学び、気付きを大切に綴りたい

html learning memo no.8

『table作成』
HTML tableタブを作る

html tableタグの基本

表は、table要素とth要素、tr要素、tb要素の組み合わせで作成

【th要素】 表の見出し
【tr要素】 表の行を定義するための要素
【tb要素】 表のデータをいれる為の要素

<table border="1">
 <tr>
  <th>日付</th>
  <th>集合場所</th>
 </tr>
 <tr>
  <td>2016/4/8</td>
  <td>鹿児島</td>
 </tr>
 <tr>
  <td>2016/5/20</td>
  <td>熊本</td>
 </tr>
</table>

html でtable作成

以上