It is An HTML table with a header cell that spans two columns.
The colspan attribute defines the number of columns a header cell should span.

Note: Only Firefox supports colspan="0", which has a special meaning (look below in the "Attribute Values" table).
<th colspan="number">
| Value | Description |
|---|---|
| number | Sets the number of columns a header cell should span. Note: colspan="0" tells the browser to span the cell to the last column of the column group (colgroup) |
<table>
<tr>
<th colspan="2">Monthly Savings</th>
</tr>
<tr>
<td>January</td>
<td>$100</td>
</tr>
<tr>
<td>February</td>
<td>$80</td>
</tr>
</table>
Type: | html |
Category: | Web Tutorial |
Sub Category: | HTML Tag |
Uploaded by: | Admin |