Home » HTML » HTML Tables » Question
  1. Each cell of the table can be represented by using __________.
    1. <thead>
    2. <th>
    3. <td>
    4. <tr>
    5. 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.



Your comments will be displayed only after manual approval.