Click Here to view Result after edited
Return to html tutorial by example
<html> <body> <h4> Head of a table form: </ h4> <table border="1" /> <tr> <th> name </ th> <th> telephone </ th> <th> fax </ th> </ tr> <tr> <td> Bill Gates </ td> <td> 555 77854 </ td> <td> 555 77855 </ td> </ tr> </ table> <h4 > vertical direction of the head table: </ h4> <table border="1" /> <tr> <th> name </ th> <td> Bill Gates </ td> </ tr> <tr> <th> Tel </ th> <td> 555 77854 </ td> </ tr> <tr> <th> Fax </ th> <td> 555 77855 </ td> </ tr> </ table> </ body> </ html>