Why does html call it 'td' and not 'tc' for table cell?
Solution 1:
You have two options for table cells: TD or TH.
TH = Table Header
TD = Table Data.
Both are table cells.
Solution 2:
short answer: yes.
Solution 3:
Table Data Cell: http://htmlhelp.com/reference/html40/tables/td.html
Solution 4:
from wikipedia:
<td>...</td>
A
<table>
data cell.Proposed in the HTML 3.0 Drafts; Standardised in HTML 3.2; still current.