123456789101112131415161718192021222324252627 |
- <!DOCTYPE html>
- <html>
- <head> </head>
- <body>
- <table id="empty-table"></table>
- <table id="full-table">
- <caption>
- A Caption
- </caption>
- <thead>
- <tr>
- <th>Head Cell</th>
- </tr>
- </thead>
- <tbody>
- <tr>
- <td>Body Cell</td>
- </tr>
- </tbody>
- <tfoot>
- <tr>
- <td>Footer Cell</td>
- </tr>
- </tfoot>
- </table>
- </body>
- </html>
|