which tag defines a table header cell.?
Answers
Answered by
1
Answer:
The <table> tag defines an HTML table. An HTML table consists of one <table> element and one or more <tr>, <th>, and <td> elements. The <tr> element defines a table row, the <th> element defines a table header, and the <td> element defines a table cell.
Answered by
6
Explanation:
Table header cells are defined using HTML th tags. Their text content is bold and centered by default. A <th> element is usually a child of a <tr> element
Similar questions