what is mean by (td)(th)and (tr) tag plzzz someone help me with correct explanation.
i hope you help me friends
Answers
<tr> tag defines a row in an HTML table.
<th> tag When writing in HTML, the <th> tag is used to designate a cell that is a header for a group of cells within a table.
Hi
<td> stands for table data and it is used for making cell and containing cell data
<th> stands for table heading it is used for making heading cell, the content of <th> will be bold.
<tr> stands for table row it is used for making row.
here is the example of all tags
<table>
<thead>
<tr>
<th>Heading one</th>
<th>Heading two</th>
<th>Heading three</th>
</tr>
</thead>
<tbody>
<tr>
<td>Cell one</td>
<td>Cell two</td>
<td>Cell three</td>
</tr>
<tr>
<td>Cell four</td>
<td>Cell five</td>
<td>Cell six</td>
</tr>
</tbody>
</table>