Skip to content

Instantly share code, notes, and snippets.

@ColinW520
Created December 3, 2015 15:45
Show Gist options
  • Save ColinW520/50dd21dc5b6ab35e0a5a to your computer and use it in GitHub Desktop.
Save ColinW520/50dd21dc5b6ab35e0a5a to your computer and use it in GitHub Desktop.
Simple Bootstrap Table Markup
<table class="table table-striped table-hover">
<thead>
<tr>
<th>Normal</th>
<th>Potential Early Alzheimers Disease*</th>
</tr>
</thead>
<tbody>
<tr>
<td>Can’t find your keys</td>
<td>Routinely place important items in odd places, such as keys in the fridge, wallet in dishwasher</td>
</tr>
<tr>
<td>Search for casual names and words</td>
<td>Forget names of family members and common objects, or substitute words with inappropriate ones</td>
</tr>
<tr>
<td>Briefly forget conversation details</td>
<td>Frequently forget entire conversations</td>
</tr>
<tr>
<td>Can’t find a recipe</td>
<td>Can’t follow recipe directions</td>
</tr>
<tr>
<td>Feel the cold more</td>
<td>Dress regardless of weather, wear several skirts on a warm day or shorts in a snow storm</td>
</tr>
<tr>
<td>Make an occasional wrong turn</td>
<td>Get lost in familiar places, don’t remember how you got there or how to get home</td>
</tr>
<tr>
<td>Feel occasionally sad</td>
<td>Experience rapid mood swings, from tears to rage, for no discernible reason</td>
</tr>
<tr>
<td colspan="2">* Please consult with a physician if you believe you may be experiencing these symptoms.</td>
</tr>
</tbody>
</table>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment