the <td> tag wraps around content to be contained in a cell of a table AND that's not a table header. Attribute(s): rowspan, colspan; Values: number or rows to span over.
Back
<tr> tag
Front
the <tr> tag wraps around table headers (<th>) and table cells (<td>).
Back
<tfoot> tag
Front
the <tfoot> tag wraps around the header row of the table.
Back
<thead> tag
Front
the <thead> tag wraps around the header row of the table.
Back
<th> tag
Front
the <th> tag signifies either a 'col' header or 'row' header, using the attribute 'scope' and values 'col' or 'row'. Wrapped around <tr>.
Back
<tbody> tag
Front
the <tbody> tag wraps around rows of the table (<tr> tags), excluding <thead> and <tfoot>.