tfoot
tfoot is an HTML element that defines a footer for a table. It groups rows that provide summary information, such as totals, summaries, or notes, and complements the header (thead) and body (tbody) sections.
Content model: A tfoot contains one or more tr elements, which in turn contain td or th
Semantics and accessibility: The tfoot communicates table-wide footer information. Screen readers describe this as the table
Styling and layout: Thead, tbody, and tfoot are treated as separate table sections. In CSS, tfoot is
Example: A simple table with a header row for Item, Quantity, and Price; a body listing items;
---