Bummer! This is just a preview. You need to be signed in with an account to view the entire instruction.
Well done!
You have completed (UPI) Chapter 6: Navigating with HTML Links and Structuring Data with Tables!
Instruction
Advanced Table Structure: Headers, Body, and Footers
HTML provides additional tags to organize tables with multiple sections:
-
<thead>
: Groups the header rows.
-
<tbody>
: Groups the body rows containing the main data.
-
<tfoot>
: Groups the footer rows, often for summary data.
Using these tags makes it easier to style sections of the table differently.
Example: Table with Header, Body, and Footer
...