HTML tr Tag

Example

A simple HTML table, containing two columns and two rows:
<table border="1">
  <tr>
    <th>Month</th>
    <th>Savings</th>
  </tr>
  <tr>
    <td>January</td>
    <td>$100</td>
  </tr>
</table>
Teach Yourself  by BH24 HTML Editor Tool!

The <tr> tag is supported in all major browsers.

Definition and Usage

The <tr> tag defines a row in an HTML table.
A <tr> element contains one or more <th> or <td> elements.