0
Which tag is act like a container in a table?
7 Antworten
+ 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.
+ 2
I am replying your question?
Is this a multiple choice question?
Yes
+ 1
Right
0
Yes