Return to Snippet

Revision: 44636
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>&ldquo;<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.&rdquo; <b>&mdash;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
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>&ldquo;<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.&rdquo; <b>&mdash;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