What does tr stand for in HTML?
The <tr> tag designates a table row. For example, in the
code below, a table with one row and two cells on that row is
created.
<table>
<TR>
<TD>lorem</TD>
<TD>ipsum</TD>
</TR>
</TABLE>