table merge in html code example
Example 1: bootstrap table combine columns
<thead>
<tr>
<th rowspan="2">State</th>
<th rowspan="2">Utilities Company</th>
<th colspan="3">Summer Period</th>
</tr>
<tr>
<th>data1</th>
<th>data2</th>
<th>data3</th>
</tr>
</thead>
Example 2: html table colspan and rowspan
<td colspan="4">Content</td>
<td rowspan="4">Content</td>