Toggle navigation
☰
Home
HTML
CSS
Scripting
Database
<!DOCTYPE html> <title>My Example</title> <table> <thead> <tr> <th colspan="2">Table Header (thead)</th> </tr> </thead> <tfoot> <tr> <th colspan="2">Table Footer (tfoot)</th> </tr> </tfoot> <tbody> <tr> <td>Cell 1 - part of tbody</td> <td>Cell 2 - part of tbody</td> </tr> <tr> <td>Cell 3 - part of tbody</td> <td>Cell 4 - part of tbody</td> </tr> <tr> <td>Cell 5 - part of tbody</td> <td>Cell 6 - part of tbody</td> </tr> </tbody> </table> <hr> <p>More info: <a href="/html/tags/html_thead_tag.cfm"><code>thead</code></a>, <a href="/html/tags/html_tbody_tag.cfm"><code>tbody</code></a>, <a href="/html/tags/html_tfoot_tag.cfm"><code>tfoot</code></a>.</p>