Computer Applications

Which tags divide HTML tables in multiple sections?

HTML Advanced Features

4 Likes

Answer

HTML tables can be divided into multiple sections by the following tags:

  1. <THEAD> — This tag is used to group header rows that define the table's header.
  2. <TBODY> — This tag defines a table's body.
  3. <TFOOT> — This tag defines a group of footer rows in a table.

Answered By

2 Likes


Related Questions