I need something like this in HTML
please click here for the layout
This is my code:
<table> <tr> <th colspan="2">ROW A</th> </tr> <tr> <th colspan="3">ROW B1</th> <th colspan="3">ROW B2</th> </tr> <tr> <th>RB1.1</th> <th>RB1.2</th> <th>RB1.3</th> <th>RB2.1</th> <th>RB2.2</th> <th>RB2.3</th> </tr> <tr> <td>a</td> <td>b</td> <td>c</td> <td>d</td> <td>e</td> <td>f</td> </tr> </table> However, this is what I get:
What am I supposed to do?