Skip to content

Instantly share code, notes, and snippets.

@rsgranne
Last active March 28, 2019 20:36
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 rsgranne/0fa4c4381d76bfcb85b4 to your computer and use it in GitHub Desktop.
Save rsgranne/0fa4c4381d76bfcb85b4 to your computer and use it in GitHub Desktop.
Sample table data used when I’m teaching responsive web design
<table class="table">
<thead>
<tr>
<th>Movie</th>
<th>Genre</th>
<th>Hero</th>
<th>Year</th>
<th>Star</th>
<th>Director</th>
</tr>
</thead>
<tbody>
<tr>
<td>Die Hard</td>
<td>Action</td>
<td>John McClane</td>
<td>1988</td>
<td>Bruce Willis</td>
<td>John McTiernan</td>
</tr>
<tr>
<td>Star Wars</td>
<td>Sci-Fi</td>
<td>Luke Skywalker</td>
<td>1977</td>
<td>Mark Hamill</td>
<td>George Lucas</td>
</tr>
<tr>
<td>John Wick</td>
<td>Action</td>
<td>John Wick</td>
<td>2014</td>
<td>Keanu Reeves</td>
<td>Chad Stahelski</td>
</tr>
</tbody>
</table>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment