+ 1
How do I form a table?
Whats the whole code for a table?
1 Answer
+ 3
<table> -this starts the table
<tr> -defines table row
<th>HERE goes your table heading</th>
<td>the data to be inserted</td>
</tr>
</table>
Whats the whole code for a table?