multiple-tables.html 1.0 KB

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