Table

<table> defines a table.

<tr> defines a table row, used within <table>.

<th> defines a table header cell, used within <tr>.
...... colspan=number
...... rowspan=number
...... abbr=short description for some user agents
...... headers=headers_ids: the related header cells
...... scope={col | colgroup | row | rowgroup}

<td> defines a table cell, used within <tr>.
...... colspan=number
...... rowspan=number
...... headers=headers_ids cells

<caption> defines a caption immediately after <table>.

<col> specifies the properties for the entire columns, used within <colgroup>
....... span=number

<colgroup> groups <col>, used within <table>
.......span=number

<thead> <tfoot> <tbody>optionally group the <tr> tags, used within <table>, and represents the first, last, and central rows respectively.