Log in

View Full Version : How do I create a table like this?



jacksont123
01-30-2007, 11:09 PM
How do I create a table like the one in the attachment with html?

jscheuer1
01-31-2007, 06:57 AM
<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>

codeexploiter
01-31-2007, 06:58 AM
<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>

chechu
01-31-2007, 11:27 AM
Learn more abou it here:
http://www.draac.com/tables1.html

jacksont123
01-31-2007, 02:00 PM
Thanks a lot for the help mates!