basic_with_header_ids.html 345 B

123456789101112131415161718192021
  1. <table>
  2. <thead>
  3. <tr>
  4. <th id="first_header">First Header</th>
  5. <th id="second_header">Second Header</th>
  6. </tr>
  7. </thead>
  8. <tbody>
  9. <tr>
  10. <td>Row 1 Cell 1</td>
  11. <td>Row 1 Cell 2</td>
  12. </tr>
  13. <tr>
  14. <td>Row 2 Cell 1</td>
  15. <td>Row 2 Cell 2</td>
  16. </tr>
  17. </tbody>
  18. </table>