Table footer group
tfoot
						The tfoot element groups together table summary rows.
When both tbody and tfoot elements are used, the tfoot element must be placed last.
The tfoot element may be the target of a CSS selector, simplifying the styling for all of the data cells it contains.
Examples
table {
    thead {
        tr {
            th Country
            th Population (millions)
            th Area (square miles)
        }
    }
    tbody {
        tr {
            td Argentina
            td 44.27
            td 1,074,000
        }
        tr {
            td Belgium
            td 11.35
            td 11,849
        }
        tr {
            td Canada
            td 37.06
            td 3,855,000
        }
    }
    tfoot {
        tr {
            th -----
            th 92.68
            th 49,40,849
        }
    }
}
							
							