H Hacker Beco New member Dec 6, 2009 #1 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 ?
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 ?
? <('_')> Guest Dec 6, 2009 #2 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!
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!