table.html 369 B

123456789101112131415161718192021
  1. <table>
  2. <thead>
  3. <tr>
  4. <th>head 1</th>
  5. <th>head 2</th>
  6. <th>head 3</th>
  7. </tr>
  8. </thead>
  9. <tbody>
  10. <tr>
  11. <td>foo</td>
  12. <td><em>bar</em></td>
  13. <td>baz</td>
  14. </tr>
  15. <tr>
  16. <td><del>a</del></td>
  17. <td><strong>b</strong></td>
  18. <td><code>cccc</code></td>
  19. </tr>
  20. </tbody>
  21. </table>