Hi, html table help please?

WYSIWYG

New member
HI, how do you create a table with two rows, the first row has two cells and the bottom row has one cell going across the two other cells?
Thanks. When i try it it just gives me two top cells and two bottom cells. The below code is what i have. Thanks.

<table id="newtab" border="1">
<tr>
<td>row 1 c1</td>
<td>row 1 c2</td>
</tr>
<tr>
<td>row 2 c1</td>
</tr>
</table>


I want row 2 c1 to go across the width of the two cells that are on the first row. However it doesnt do it. Thanks for any help.
 
Back
Top