Skip to content

Instantly share code, notes, and snippets.

Created May 15, 2012 15:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/2702452 to your computer and use it in GitHub Desktop.
Save anonymous/2702452 to your computer and use it in GitHub Desktop.
<?xml version="1.0" encoding="windows-1252"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<!-- Created on: 5/15/2012 -->
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252" />
<title></title>
</head>
<body>
<h1>Table Example Page</h1>
<table border="1">
<caption>Here is a small sample <br/> table</caption>
<thead>
<tr>
<th colspan = "2">This is the table head</th>
</tr>
</thead>
<tbody>
<tr>
<td colspan = "2">This is the body</td>
</tr>
<tr>
<td>This is the table </td>
<td>foot.</td>
</tr>
</tbody>
</table>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment