tr:这是表中的“行”。每一行是一个tr(table row)。
th:这是表头,也就是每一列的标题(table head)。
td:这是表的每一个单元格
th与td的区别是:th内部的文本样式为居中+粗体,td 内的文本样式为左对齐+普通文本。
| 
 1 
2 
3 
4 
5 
6 
7 
8 
9 
10 
11 
12 
13 
14 
 | 
<table border = "1px">    <tr>        <th width = "100px">姓名</th>        <th width = "100px">职业</th>    </tr>    <tr>        <td>Java君</td>        <td>程序猿</td>    </tr>    <tr>        <td>PHP君</td>        <td>程序猿</td>    </tr><table> | 

原文:https://www.cnblogs.com/czlovezmt/p/9771030.html