T

Tanmay • 2.43K Points
Master

Q. Which of the following tags are related to a table in HTML?

  • (A) <table> <row> <column>
  • (B) <table> <tr> <td>
  • (C) <table> <head> <body>
  • (D) <table> <header> <footer>

Explanation by: Tanmay
Example to create a table in HTML:
<table>
  <tr>
    <td>....</td>
    <td>....</td> 
  </tr>
  <tr>
    <td>....</td>
    <td>....</td> 
  </tr>
</table>

You must be Logged in to update hint/solution

Discusssion

Login to discuss.

Be the first to start discuss.