aesthetic_table.html 191 B

123456789101112131415161718
  1. <table>
  2. <thead>
  3. <tr>
  4. <th>header 1</th>
  5. <th>header 2</th>
  6. </tr>
  7. </thead>
  8. <tbody>
  9. <tr>
  10. <td>cell 1.1</td>
  11. <td>cell 1.2</td>
  12. </tr>
  13. <tr>
  14. <td>cell 2.1</td>
  15. <td>cell 2.2</td>
  16. </tr>
  17. </tbody>
  18. </table>