Table Tags
| Tag | Usage |
|---|---|
| <table> ... </table> |
begin and end a table |
| <caption>...</caption> | caption centered above the table |
| <tr>...</tr> | begin and end a table row |
| <th>...</th> | begin and end table header cells--by default contents are in bold and centered |
| <td>...</td> | begin and end table data cells |
| Attribute | Usage |
|---|---|
| colspan = "2" | specifies how many columns a cell should span use on <th> and <td> only |
| rowspan = "2" |
specifies how many rows a cell should span use on <th> and <td> only |
| scope = "col" | associates a header tag with a column of data cells. use on <th> only |
| scope = "row" | associates a header tag with a row of data cells. use on <th> only |
