Table Header Example

Example using table header cells.

Preview

Code

<table border="1">
<tr>
<th>Product</th>
<th>Price</th>
</tr>
<tr>
<td>Laptop</td>
<td>$800</td>
</tr>
</table>

More HTML Tables Examples (11)