HTML <th> 标签

HTML <th> 标签

实例

普通的 HTML 表格,包含两行两列:

<table border="1">
  <tr>
    <th>Company</th>
    <th>Address</th>
  </tr>

  <tr>
    <td>Apple, Inc.</td>
    <td>1 Infinite Loop Cupertino, CA 95014</td>
  </tr>
</table>
posted @ 2017-08-17 10:57  sky20080101  阅读(102)  评论(0)    收藏  举报