Code has been added to clipboard!
Deprecated bgcolor Attribute in HTML th
Example
<table>
<tr>
<th bgcolor="yellow">Fruits</th>
<th bgcolor="#00FF00">Prices</th>
</tr>
<tr>
<td>Apple</td>
<td>€0.60</td>
</tr>
<tr>
<td>Banana</td>
<td>€0.32</td>
</tr>
</table>