-6

Possible Duplicate:
HTMl Table different number of columns in different rows

How to design the below one using html tables

    ----------------------------------
    |                  |             |
    |                  |             |
    |                  |             |
    |--------------------------------|                                
    |      |                         |
    |      |                         |
    |      |                         |
     ---------------------------------
Community
  • 1
  • 1
Gun
  • 1,400
  • 1
  • 10
  • 16

1 Answers1

1

I don't recommend using tables for creating that kind of layout, but if you really must use HTML tables, colspan attribute is the answer to your problem.

See the link and try the examples: http://www.w3schools.com/tags/att_td_colspan.asp

adritha84
  • 957
  • 1
  • 7
  • 15