<table> |
Table |
The wrapper element for all HTML tables. |
This table starts with a table tag. |
<thead> |
Table Head |
The set of rows defining the column headers in a table. |
Tag, Name Description and Example are thead tags |
<tbody> |
Table Body |
The set of rows containing actual table data. |
The tag is used to group the body content in an HTML table |
<tr> |
Table Row |
The table row container. |
Used in conjunction with the thead and tfoot elements to specify each part of a table (body, header, footer). |
<td> |
Table Data |
The table row container. |
The data inside the tr, like this! |
<tfoot> |
Table Foot |
The set of rows defining the footer in a table. |
Tells a browser that the table is ending, also useful for printing. |