gh-style-tables.html 433 B

123456789101112131415161718192021
  1. <table>
  2. <thead>
  3. <tr>
  4. <th>First Header</th>
  5. <th>Second Header</th>
  6. <th>Third Header</th>
  7. </tr>
  8. </thead>
  9. <tbody>
  10. <tr>
  11. <td>Content Cell</td>
  12. <td>Content Cell</td>
  13. <td>C</td>
  14. </tr>
  15. <tr>
  16. <td>Content Cell</td>
  17. <td>Content Cell</td>
  18. <td>C</td>
  19. </tr>
  20. </tbody>
  21. </table>