HTML5 Application Development Fundamentals — Question 13

Which two tags are used with the HTML5 TABLE element? (Choose two.)

Answer options

Correct answer: B, C

Explanation

The correct tags for the HTML5 TABLE element are <tfoot> and <td>. <tfoot> is used to define the footer section of a table, while <td> is used to define individual cells within a table row. The other options, <body> and <head>, are used in the overall structure of an HTML document but are not specific to tables.