Which tag is act like a container in a table? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Which tag is act like a container in a table?

21st Apr 2020, 12:35 AM
Afzal
4 Answers
+ 2
<table></table> creates a table in your website <tr></tr> creates a table row in your table <td></td> creates a column with data in your table row <th></th> does the same thing as <td> just that it is a header <table> <tr> <th>1st column header</th> <th>2nd column header</th> </tr> <tr> <td>1st column data</td> <td>2nd column data</td> </tr> </table> You now have a table with 2 rows and 2 columns; 1 row for the heading and 1 row for your table data.
21st Apr 2020, 1:25 AM
Neo Hao Jun
Neo Hao Jun - avatar
+ 2
I am replying your question? Is this a multiple choice question? Yes
21st Apr 2020, 1:35 AM
Afzal
+ 1
Right
21st Apr 2020, 2:24 AM
Afzal
0
Yes
21st Apr 2020, 1:02 AM
Afzal