/ Published in: HTML
Valid HTML table template with example data.
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
<table> <thead> <tr> </tr> </thead> <tfoot> <tr> <td colspan="4"> <blockquote><p>“<em>tfoot</em> must appear before <em>tbody</em> within a table, so that a browser can render the foot before receiving all the rows of data.” <b>—W3Schools</b></p></blockquote> </td> </tr> </tfoot> <tbody> <tr> </tr> </tbody> </table>