Table.html 605 B

123456789101112131415161718192021222324252627
  1. <!DOCTYPE html>
  2. <html>
  3. <head> </head>
  4. <body>
  5. <table id="empty-table"></table>
  6. <table id="full-table">
  7. <caption>
  8. A Caption
  9. </caption>
  10. <thead>
  11. <tr>
  12. <th>Head Cell</th>
  13. </tr>
  14. </thead>
  15. <tbody>
  16. <tr>
  17. <td>Body Cell</td>
  18. </tr>
  19. </tbody>
  20. <tfoot>
  21. <tr>
  22. <td>Footer Cell</td>
  23. </tr>
  24. </tfoot>
  25. </table>
  26. </body>
  27. </html>