HTML Table Reference

Table Tags

Tag Name Description
<table> Table The wrapper element for all HTML tables.
<thead> Table Head The set of rows defining the column headers in a table.
<tbody> Table Body The set of rows containing actual table data.
<tfoot> Table Foot The set of rows defining the footer in a table.
<tr> Table Row The table row container.
<th> Table Head Use for first line of the raw for marking header purpose
<td> Table Data Use for columns inside of the row

Table Attributes

Attribute Name Description
<colspan> Column Span Defines how many columns a td element should span.
<rowspan> Row Span Defines how many rows a td element should span.