so im trying to crate 2 tables one underneath the first and a 3rd sitting against the 2 on the right all 3 will make sort of a square look in the end just after html no css thanks
You REALLY need to learn CSS. You're asking to do layouts in bloated, slow fifteen year out of date methodologies.
You can achieve this through CSS positioning element. You can send me your design requirement in jpg I will develop it for you.
Truly it's good to learn CSS. But if you want to use tables, here's the code: <table border="1"> <tr> <td> top-left </td> <td rowspan="2"> right </td> </tr> <tr> <td> bottom-left </td> </tr> </table> HTML: You can put in each <td> inner tables if you want. Hope that helps!