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
🌐
MDN Web Docs
developer.mozilla.org › en-US › docs › Web › HTML › Reference › Elements › td
<td> HTML table data cell element - HTML | MDN
5 days 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.
🌐
W3Schools
w3schools.com › tags › tag_td.asp
HTML td tag
The <td> tag defines a standard data cell in an HTML table.
🌐
GeeksforGeeks
geeksforgeeks.org › html › html-td-tag
HTML Table Data Tag - GeeksforGeeks
1 month ago - The <td> tag in HTML defines a standard data cell inside a table.
🌐
TechOnTheNet
techonthenet.com › html › elements › td_tag.php
HTML: <td> tag
This HTML tutorial explains how to use the HTML element called the td tag with syntax and examples. The HTML td tag defines a standard cell in an HTML table (also called td element).
🌐
Jukka Korpela
jkorpela.fi › HTML3.2 › 5.55.html
TD - table data (cell) (Not in HTML 2.0!) [Learning HTML 3.2 by Examples]
December 16, 2010 - Learning HTML 3.2 by Examples, section 5 Descriptions of HTML 3.2 tags: To present a data cell in a table. A data cell in a table, typically presented using the normal text font (although a browser might conceivably decide to use a smaller font). By default, the data is aligned to the left ...
🌐
Tutorialspoint
tutorialspoint.com › html › html_td_tag.htm
HTML - <td> Tag
The HTML <td> tag is used to define the table data in a table. It is the key component in building structured tabular content. The <td> tag must be used within a <tr> element, which groups one or more table cells.
Find elsewhere
🌐
MDN Web Docs
developer.mozilla.org › en-US › docs › Web › HTML › Reference › Elements › table
<table> HTML table element - HTML | MDN
5 days ago - The <table> HTML element represents tabular data—that is, information presented in a two-dimensional table comprised of rows and columns of cells containing data. <table> <caption> Front-end web developer course 2021 </caption> <thead> <tr> <th scope="col">Person</th> <th scope="col">Most ...
🌐
Instagram
instagram.com › popular › td-in-html-stands-for
Td In Html Stands For
We cannot provide a description for this page right now
🌐
Htmltable
htmltable.com › td
td HTML Table Cell Tag - HTMLtable.com
You can also put labels on the boxes to tell what’s inside them. HTML table cells help you make your web page look neat and tidy. The td is the child of the tr (table row), and it can contain text, images and other inline or block elements, even another nested table.
🌐
U.S. Department of State
travel.state.gov › content › travel › en › us-visas › employment › visas-canadian-mexican-usmca-professional-workers.html
Visas for Canadian and Mexican USMCA Professional ...
A Canadian who lives outside Canada with a non-Canadian spouse and/or child(ren), and who plans to enter the United States as a USMCA professional with their family member(s), will need a TN visa in order for the family member(s) to be eligible to apply for derivative TD nonimmigrant visa(s).
🌐
Canada Border Services Agency
cbsa-asfc.gc.ca › travel-voyage › td-dv-eng.html
Travel and identification documents for entering Canada
Acceptable documents that confirm citizenship and identity when travelling alone or with children or minors.
🌐
HTML Tables
htmltables.io › tags › td
HTML <td> Tag — Web Reference (2024)
May 28, 2024 - ... The <td> HTML tag plays a pivotal role in structuring tables by defining individual data cells. Unlike <th> elements, which denote table headers, <td> is specifically designed for standard data cells.
🌐
DotFactory
dofactory.com › html › td › class
HTML td class
<style> table.tb { width:300px; border-collapse: collapse; } .tb th, .tb td { border: solid 1px #777; padding: 5px; } .tb th { background: #3630a3; color: white; text-align:left; } .tcell { background: #f6f8ff; } </style> <table class="tb"> <tr> <th>First name</th> <th>Last name</th> </tr> <tr> <td class="tcell">Denice</td> <td class="tcell">Hobermann</td> </tr> <tr> <td class="tcell">Paulo</td> <td class="tcell">Cornell</td> </tr> </table> Try it live
🌐
Mimo
mimo.org › glossary › html › td-tag
HTML <td> Tag: Syntax, Usage, and Examples
January 11, 2026 - The <td> tag defines a data cell inside an HTML table.
🌐
W3Schools
w3schools.com › html › html_tables.asp
HTML Tables
A table in HTML consists of table cells inside rows and columns. ... <table> <tr> <th>Company</th> <th>Contact</th> <th>Country</th> </tr> <tr> <td>Alfreds Futterkiste</td> <td>Maria Anders</td> <td>Germany</td> </tr> <tr> <td>Centro comercial Moctezuma</td> <td>Francisco Chang</td> <td>Mexico</td> </tr> </table> Try it Yourself »