Revision: 44636
Updated Code
at April 15, 2011 05:05 by mecha
Updated Code
<table> <caption>HTML Table Template</caption> <thead> <tr> <th scope="col">First name</th> <th scope="col">Last name</th> <th scope="col">User name</th> <th scope="col">Email address</th> </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> <td>Jon</td> <td>LaBelle</td> <td>mecha</td> <td><a href="mailto:[email protected]" rel="author">[email protected]</a></td> </tr> </tbody> </table>
Revision: 44635
Initial Code
Initial URL
Initial Description
Initial Title
Initial Tags
Initial Language
at April 15, 2011 05:03 by mecha
Initial Code
<table> <caption>HTML Table Template</caption> <thead> <tr> <th scope="col">First name</th> <th scope="col">Last name</th> <th scope="col">User name</th> <th scope="col">Email address</th> </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> <td>Jon</td> <td>LaBelle</td> <td>mecha</td> <td><a href="mailto:[email protected]" rel="author">[email protected]</a></td> </tr> </tbody> </table>
Initial URL
Initial Description
Valid HTML table template with example data.
Initial Title
HTML Table Template
Initial Tags
table, template, html
Initial Language
HTML