Skip to content

Instantly share code, notes, and snippets.

@abhishekjakhar
Created October 15, 2018 16:32
Show Gist options
  • Save abhishekjakhar/1d799865ad08b164dc5a94a2dcc86ee0 to your computer and use it in GitHub Desktop.
Save abhishekjakhar/1d799865ad08b164dc5a94a2dcc86ee0 to your computer and use it in GitHub Desktop.
Table Foot Element
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sign Up Form</title>
<link rel="stylesheet" href="css/normalize.css">
<link href="https://fonts.googleapis.com/css?family=Lato:300,400,700" rel="stylesheet">
<link rel="stylesheet" href="css/main.css">
</head>
<body>
<table>
<thead>
<tr>
<th>Country</th>
<th>Capital</th>
<th>Language</th>
</tr>
</thead>
<tfoot>
<tr>
<td colspan="3">Copyright &copy; 2018 Example Organization</td>
</tr>
</tfoot>
<tbody>
<tr>
<td>India</td>
<td>New Delhi</td>
<td>Hindi</td>
</tr>
<tr>
<td>France</td>
<td>Paris</td>
<td>French</td>
</tr>
<tr>
<td>New Zealand</td>
<td>Wellington</td>
<td>English</td>
</tr>
</tbody>
</table>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment