-
Each cell of the table can be represented by using __________.
-
- <thead>
- <th>
- <td>
- <tr>
- None of these
Correct Option: C
td stands for table data, we can represent each cell of the table by using <td>, at the end we used </td> tag. But some browsers by default draw the lines around table. <tr> is used to indicate start of every row i.e. it stands for table row. The header information is present in <th> tag. <thead> tag contains the group of header.