How do I create a table like the one in the attachment with html?
How do I create a table like the one in the attachment with html?
Code:<table border="1" cellpadding="5" cellspacing="5"> <tr> <td align="center" valign="middle" rowspan="2">Hi</td> <td align="center" valign="middle">Ola</td> </tr> <tr> <td align="center" valign="middle">Salut</td> </tr> </table>
- John________________________
Show Additional Thanks: International Rescue Committee - Donate or: The Ocean Conservancy - Donate or: PayPal - Donate
Code:<table cellspacing="0" cellpadding="0" width="200" border="1"> <tr> <td rowspan="2" width="100">hi</td> <td width="100">Ola</td> </tr> <tr><td width="100">Salut</td></tr> </table>
Thanks a lot for the help mates!
Bookmarks