Guest User

Untitled

a guest
Jul 18th, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. <html>
  2. <body>
  3.  
  4. <h4>Cell that spans two columns:</h4>
  5. <table border="1">
  6. <tr>
  7. <th>Name</th>
  8. <th colspan="2">Telephone</th>
  9. </tr>
  10. <tr>
  11. <td>Bill Gates</td>
  12. <td>555 77 854</td>
  13. <td>555 77 855</td>
  14. </tr>
  15. </table>
  16.  
  17. <h4>Cell that spans two rows:</h4>
  18. <table border="1">
  19. <tr>
  20. <th>First Name:</th>
  21. <td>Bill Gates</td>
  22. </tr>
  23. <tr>
  24. <th rowspan="2">Telephone:</th>
  25. <td>555 77 854</td>
  26. </tr>
  27. <tr>
  28. <td>555 77 855</td>
  29. </tr>
  30. </table>
  31.  
  32. </body>
Add Comment
Please, Sign In to add comment