+ 1
Please point out the differences among td,th & tr tag
<td><th><tr>
2 odpowiedzi
+ 7
Riyad Rahman
tr---refers to Table Row which means to create a new Row.
td---refers to Table Data which means to split the rows in the cells.
th---refers to table cell that contains a heading .
Better to follow sololearn html course.
https://code.sololearn.com/W0otOtt1jfBr/?ref=app
+ 3
<tr> is used to make a row in table.
<th> is the header of that table
<td> is the table cells
That's the order
<tr>
<th> heading</th>
</tr>
<tr>
<td> cell </td>
</tr>
Hope it helps