You are here : htmlHTML 5th

<th> - HTML 5

The <th> tag defines a header cell in an HTML table.

An HTML table has two kinds of cells:

  • Header cells - contains header information (created with the <th> element)
  • Standard cells - contains data (created with the <td> element)

The text in <th> elements are bold and centered by default.

The text in <td> elements are regular and left-aligned by default.


Syntax

<table> <tr>   <th>Month</th>   <th>Savings</th> </tr> <tr>   <td>January</td>   <td>$100</td> </tr></table>


Example

<table> <tr>   <th>Month</th>   <th>Savings</th> </tr> <tr>   <td>January</td>   <td>$100</td> </tr></table>


Output / Return Value


Limitations


Alternatives / See Also


Reference