Click Here to view Result after edited
Return to html tutorial by example
<html> <body> <h4> With colpsan attribute set contains more out of the cell: </ h4> <table border="1" /> <tr> <th> name </ th> <th colspan = "2 " /> Contact </ th> </ tr> <tr> <td> Bill Gates </ td> <td> 555 77854 </ td> <td> 555 77855 </ td> </ tr> </ table> <h4> with rowspan this property, the set includes cell lines: </ h4> <table border="1" /> <tr> <th> name </ th> <td> Bill Gates </ td> </ tr> <tr> <th rowspan="2" /> Contact </ th> <td> 555 77854 </ td> </ tr> <tr> <td> 555 77855 </ td> </ tr> </ table> </ body> </ html>