table with hor and vert headers and caption


/ Published in: HTML
Save to your folder(s)



Copy this code and paste it in your HTML
  1. <table border="0" summary="table summary">
  2. <caption align="top">
  3. table caption
  4. <tr>
  5. <th scope="col"> </th>
  6. <th scope="col">header</th>
  7. <th scope="col">header</th>
  8. <th scope="col">header</th>
  9. <th scope="col">header</th>
  10. </tr>
  11. <tr>
  12. <th scope="row">header</th>
  13. <td>[#]</td>
  14. <td>[#]</td>
  15. <td>[#]</td>
  16. <td>[#]</td>
  17. </tr>
  18. <tr>
  19. <th scope="row">header</th>
  20. <td>[#]</td>
  21. <td>[#]</td>
  22. <td>[#]</td>
  23. <td>[#]</td>
  24. </tr>
  25. <tr>
  26. <th scope="row">header</th>
  27. <td>[#]</td>
  28. <td>[#]</td>
  29. <td>[#]</td>
  30. <td>[#]</td>
  31. </tr>
  32. <tr>
  33. <th scope="row">header</th>
  34. <td>[#]</td>
  35. <td>[#]</td>
  36. <td>[#]</td>
  37. <td>[#]</td>
  38. </tr>
  39. </table>

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.