0
How can i use for table in html
2 Answers
+ 3
Use the <table> tag.
<tr> - table row
<td> - table data....
This code creates a 2x2 table.
<table>
<tr><td>data1</td><td>data2</td></tr>
<tr><td>data3</td><td>data4</td></tr>
</table>
0
I don't know what has change, but in Microsoft Word 97 I use to build tables and was able to directly copy the source code right to my html pages