Computer Science, asked by shobhnathakor18, 2 months ago

Which opening and closing tags are used to define the header row cells in an HTML table element?

Answers

Answered by jayeshbudhwani1999
1

Answer:

<TH> TAG.

Explanation:

For Defining the table header we can use "<th> </th>" tag which is a type of opening closing tag stands for table header.

For Defining the table row and data inside we can use "<tr> </tr>" and "<td> </td> " tag which is a also type of opening closing tag stands for table row and table data.

Example:

<table>

<tr>

<th>Name</th>

</tr>

<tr>

<td>Ram</td>

</tr>

</table>

Similar questions