๐ŸŒ
W3Schools
w3schools.com โ€บ tags โ€บ tag_th.asp
HTML th tag
The <th> tag defines a header cell in an HTML table.
๐ŸŒ
MDN Web Docs
developer.mozilla.org โ€บ en-US โ€บ docs โ€บ Web โ€บ HTML โ€บ Reference โ€บ Elements โ€บ th
<th> HTML table header element - MDN Web Docs
2 weeks ago - <table> <caption> Alien football stars </caption> <thead> <tr> <th scope="col">Player</th> <th scope="col">Gloobles</th> <th scope="col">Za'taak</th> </tr> </thead> <tbody> <tr> <th scope="row">TR-7</th> <td>7</td> <td>4,569</td> </tr> <tr> <th scope="row">Khiresh Odo</th> <td>7</td> <td>7,223</td> </tr> <tr> <th scope="row">Mia Oolong</th> <td>9</td> <td>6,219</td> </tr> </tbody> </table>
People also ask

What is HTML tag?
The HTML tag stands for a table header cell in an HTML table. It is used to define headings for columns or rows within the table. elements are typically bold and centered by default, providing semantic meaning to data and aiding accessibility for screen readers and other assistive technologies.
๐ŸŒ
lenovo.com
lenovo.com โ€บ home
The Role of HTML `<th>` Tag in Tables | Lenovo US
Does the tag have any attributes?
Yes, the tag can have attributes such as colspan and rowspan. The colspan attribute specifies the number of columns a header cell should span, while the rowspan attribute specifies the number of rows it should span. These attributes allow you to create more complex table structures by merging multiple cells into a single header, providing flexibility and customization options in organizing tabular data.
๐ŸŒ
lenovo.com
lenovo.com โ€บ home
The Role of HTML `<th>` Tag in Tables | Lenovo US
What is the purpose of using the tag in HTML?
The purpose of using the tag in HTML is to define table header cells. By using , you show to browsers and assistive technologies that the content within those cells is a header, providing semantic meaning to the structure of your table. This not only improves accessibility for your users with screen readers but also helps search engines understand the importance and structure of data within the table, enhancing the overall clarity and usability of your web content.
๐ŸŒ
lenovo.com
lenovo.com โ€บ home
The Role of HTML `<th>` Tag in Tables | Lenovo US
๐ŸŒ
Lenovo
lenovo.com โ€บ home
The Role of HTML `<th>` Tag in Tables | Lenovo US
The purpose of using the <th> tag in HTML is to define table header cells. By using <th>, you show to browsers and assistive technologies that the content within those cells is a header, providing semantic meaning to the structure of your table.
๐ŸŒ
TechOnTheNet
techonthenet.com โ€บ html โ€บ elements โ€บ th_tag.php
HTML: <th> tag
This HTML tutorial explains how to use the HTML element called the th tag with syntax and examples. The HTML th tag defines a header cell that can appear in the first row of an HTML table (also called th element).
๐ŸŒ
GeeksforGeeks
geeksforgeeks.org โ€บ html โ€บ html-th-tag
HTML Table Header Tag - GeeksforGeeks
April 3, 2026 - The <th> tag in HTML is used to define table header cells, helping label and organize table columns or rows.
๐ŸŒ
Quackit
quackit.com โ€บ html โ€บ tags โ€บ html_th_tag.cfm
HTML <th> Tag
The HTML <th> tag is used for specifying a header cell (or table header) within a table.
๐ŸŒ
Computer Hope
computerhope.com โ€บ jargon โ€บ h โ€บ html-th-tag.htm
HTML <th> Tag
The HTML (HyperText Markup Language) <th> tag is short for table head and used to designate a cell as a column header in a table. It is useful for storing information about a set of rows or columns.
Find elsewhere
๐ŸŒ
W3docs
w3docs.com โ€บ learn-html โ€บ html-th-tag.html
HTML th Tag - Learn HTML | W3Docs
The <th> tag specifies a header cell in an HTML table. It must be used as a child element of <tr>, which in its turn is declared in the <table> tag.
๐ŸŒ
Tutorialspoint
tutorialspoint.com โ€บ html โ€บ html_th_tag.htm
HTML - <th> Tag
The HTML <th> tag is used to define a header cell in a table. It is used within the <tr> element and provides header for the table rows or columns.
๐ŸŒ
Scaler
scaler.com โ€บ home โ€บ topics โ€บ tag in html
th Tag in HTML - Scaler Topics
October 31, 2022 - This means that any non-standard elements must nevertheless allow certain characteristics, even if using such elements renders the content non-HTML5 compliant. HTML5-compliant browsers, for example, hide content tagged as <foo hidden>...</foo>, despite the fact that <foo> is not a legitimate HTML element.
๐ŸŒ
Quora
quora.com โ€บ What-is-the-use-of-the-th-tag-in-HTML-What-are-the-differences-between-the-th-and-tr-tags-with-respect-to-table-data-display-etc
What is the use of the <th> tag in HTML? What are the differences between the <th> and <tr> tags with respect to table data display, etc.? - Quora
Answer (1 of 2): is โ€œtable headโ€, is table row. They work essentially the same, but are rendered differently: unless of style override, header cells have normally bold text. is normally used for the table first row, where its cells are column ...
๐ŸŒ
Mimo
mimo.org โ€บ glossary โ€บ html โ€บ th-tag
HTML <th> Tag: Syntax, Usage, and Examples
January 11, 2026 - The <th> tag defines a header cell in an HTML table.
๐ŸŒ
Educative
educative.io โ€บ answers โ€บ what-is-the-th-element-in-html
What is the <th> element in HTML?
The <th> tag stands for table heading. It is used to define a single data cell in the HTML table.
๐ŸŒ
W3Resource
w3resource.com โ€บ html โ€บ th โ€บ HTML-th-tag-and-element.php
HTML th tag and element - HTML tutorials - w3resource
August 19, 2022 - HTML th (table header cell) element represents a table header cell of an HTML table.
๐ŸŒ
GeeksforGeeks
geeksforgeeks.org โ€บ html โ€บ differentiate-between-th-thead-tags-in-html-table
Differentiate between &lt;th&gt; &amp; &lt;thead&gt; tags in HTML Table - GeeksforGeeks
July 23, 2025 - HTML <th> tag: This tag defines the heading for a table cell. The header of the cell in a table is always aligned centered by default and is bold so that anyone can easily find the header of a column. It is directly related to every <td> tag.
๐ŸŒ
HTML Tables
htmltables.io โ€บ tags โ€บ th
HTML <th> Tag โ€” Web Reference (2024)
May 28, 2024 - The primary purpose of the <th> HTML tag is to define header cells within an HTML table. Unlike regular data cells (<td>), header cells provide essential context and labels for the data in the table.