multiple-tables.html 612 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <h1 id="tabletest">Table Test</h1>
  2. <h2 id="section1">section 1</h2>
  3. <table>
  4. <thead>
  5. <tr>
  6. <th>header1</th>
  7. <th>header2</th>
  8. <th>header3</th>
  9. </tr>
  10. </thead>
  11. <tbody>
  12. <tr>
  13. <td>Value1</td>
  14. <td>Value2</td>
  15. <td>Value3</td>
  16. </tr>
  17. </tbody>
  18. </table>
  19. <h2 id="section2">section 2</h2>
  20. <table>
  21. <thead>
  22. <tr>
  23. <th>headerA</th>
  24. <th>headerB</th>
  25. <th>headerC</th>
  26. </tr>
  27. </thead>
  28. <tbody>
  29. <tr>
  30. <td>ValueA</td>
  31. <td>ValueB</td>
  32. <td>ValueC</td>
  33. </tr>
  34. </tbody>
  35. </table>