98-375 · Question #94
Which two tags are used with the HTML5 TABLE element? (Choose two.)
The correct answer is B. <tfoot> C. <td>. An HTML table consists of the <table> element and one or more <tr>, <th>, and <td> elements. The <tr> element defines a table row, the <th> element defines a table header, and the <td> element defines a table cell. A more complex HTML table may also include <caption>, <col>…
Question
Which two tags are used with the HTML5 TABLE element? (Choose two.)
Options
- A<body>
- B<tfoot>
- C<td>
- D<head>
How the community answered
(23 responses)- A13% (3)
- B74% (17)
- D13% (3)
Explanation
An HTML table consists of the <table> element and one or more <tr>, <th>, and <td> elements. The <tr> element defines a table row, the <th> element defines a table header, and the <td> element defines a table cell. A more complex HTML table may also include <caption>, <col>, <colgroup>, <thead>, <tfoot>, and <tbody> elements.
Topics
Community Discussion
No community discussion yet for this question.