The <tr>
tag defines a standard row in an HTML table on a web page.
The <tr>
tag houses the <th>
and <td>
tags, also known as Table Header and Table Data respectively.
<tr>
tag is a close-ended tag meaning that every <tr>
tag opened must be closed with their sub-sequent closing tag denoted by </tr>
<tr>
tag defines a row in a table.
Example
“`html
Tr Tag Example
Header One |
---|
The usual table data/column cell. |
The usual table data/column cell. |
The usual table data/column cell. |