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