You have two options for table cells: TD or TH.

TH = Table Header

TD = Table Data.

Both are table cells.

Answer from Joe on Stack Overflow
๐ŸŒ
W3Schools
w3schools.com โ€บ tags โ€บ tag_td.asp
HTML td tag
The <td> tag defines a standard data cell in an HTML table.
๐ŸŒ
MDN Web Docs
developer.mozilla.org โ€บ en-US โ€บ docs โ€บ Web โ€บ HTML โ€บ Reference โ€บ Elements โ€บ td
<td> HTML table data cell element - HTML | MDN
2 weeks ago - The <td> HTML element defines a cell of a table that contains data and may be used as a child of the <tr> element.
๐ŸŒ
GeeksforGeeks
geeksforgeeks.org โ€บ html โ€บ html-td-tag
HTML Table Data Tag - GeeksforGeeks
April 3, 2026 - The <td> tag in HTML defines a standard data cell inside a table.
Find elsewhere
๐ŸŒ
DotFactory
dofactory.com โ€บ html โ€บ td
HTML td Tag
The <td> tag adds a table cell to an HTML table.
๐ŸŒ
Quackit
quackit.com โ€บ html โ€บ tags โ€บ html_td_tag.cfm
HTML <td> Tag
The HTML <td> tag represents a data cell (or table data) in an HTML table.
๐ŸŒ
Lenovo
lenovo.com โ€บ home
Master HTML <td> Tag: Table Data Essentials | Lenovo US
tag supports the rowspan and colspan attributes, enabling efficient structuring of data in tables. This feature is vital for optimizing content presentation on laptop and desktop screens, ensuring a seamless and organized display.
๐ŸŒ
Mimo
mimo.org โ€บ glossary โ€บ html โ€บ td-tag
HTML <td> Tag: Syntax, Usage, and Examples
January 11, 2026 - The <td> tag is the standard way to represent table data in HTML.
๐ŸŒ
DotFactory
dofactory.com โ€บ html โ€บ td โ€บ style
HTML td style
<style> table.tb { width:300px; border-collapse: collapse; } .tb th, .tb td { border: solid 1px #777; padding: 5px; } .tb th { background: #3630a3; color:white; } </style> <table class="tb"> <tr> <th>First name</th> <th>Last name</th> </tr> <tr> <td style="background: #f6f8ff;">Denice</td> <td style="background: #f6f8ff;">Hobermann</td> </tr> <tr> <td style="background: #f6f8ff;">Paulo</td> <td style="background: #f6f8ff;">Cornell</td> </tr> </table> Try it live
๐ŸŒ
TD SYNNEX
tdsynnex.com โ€บ na โ€บ us โ€บ en โ€บ partnerfirst.html
TD SYNNEX PartnerFirst
My business dashboard Gain a complete view of your business with TD SYNNEX, leveraging rich insights and business management dashboards, all on one page.
๐ŸŒ
Codecademy
codecademy.com โ€บ forum_questions โ€บ 560d243995e3784621000404
How in the world does the <td> tag works | Codecademy
tag work? 2 votes ยท Permalink ยท HTML data tables consist of nested structural elements. all of which are containers. The main container is, <table></table> Next is the row container, <tr></tr> Then we get to the columns, which are formed by table data cells, <th></th><td></td> None of the above have dimensions but they can be expanded to whatever size is needed to fit the data.
๐ŸŒ
BFO
bfo.com โ€บ products โ€บ report โ€บ docs โ€บ tags โ€บ tags โ€บ td.html
td
<table> <tr> <th rowspan="2">First column, both rows</th> <td>Second column, first row</td> </tr> <tr> <td>Second column, second row</td> </tr> </table>
๐ŸŒ
Quora
quora.com โ€บ What-is-td-tag-in-HTML
What is td tag in HTML? - Quora
The <tr> element defines a table row, the <th> element defines a table header, and the <td> element defines a table cell in HTML. ... Know when your data is exposed. NordProtect alerts you when leaked passwords appear on the dark web.
๐ŸŒ
Scaler
scaler.com โ€บ home โ€บ topics โ€บ td tag in html
<td> tag in html - Scaler Topics
May 4, 2023 - An individual data item can be displayed with the <td> element. In HTML, tables are used to organize/structure the data into rows or columns. Tables are made up of table cells arranged in rows and columns. ... In the above example we have created a simple table by using the table tag.