Html Table Problems please help me?

Hacker Beco

New member
Im creating a Html web page for my senior project. Im using some tables and i can get my tables to seperate. nomatter were there are when, they make one big table. any ideas ?
 
To make two separate tables you would have to do something like this:

<table>
<tr>
<td>text</td>
<td>text</td>
</tr>
<tr>
<td>text</td>
<td>text</td>
</tr>
</table>
<BR>
<table>
<tr>
<td>text</td>
<td>text</td>
</tr>
<tr>
<td>text</td>
<td>text</td>
</tr>
</table>

This would make two tables that are 2X2 with each cell holding the word "text".

Hope this helps!
 
Back
Top