Skip to content

Instantly share code, notes, and snippets.

Created December 31, 2015 07:27
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save anonymous/56452786637814da07a6 to your computer and use it in GitHub Desktop.
Save anonymous/56452786637814da07a6 to your computer and use it in GitHub Desktop.
JS Bin // source https://jsbin.com/binoho
<!DOCTYPE html>
<html>
<head>
<script src="https://code.jquery.com/jquery.min.js"></script>
<link href="https://netdna.bootstrapcdn.com/twitter-bootstrap/2.3.2/css/bootstrap-combined.min.css" rel="stylesheet" type="text/css" />
<script src="https://netdna.bootstrapcdn.com/twitter-bootstrap/2.3.2/js/bootstrap.min.js"></script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
<meta charset="utf-8">
<title>JS Bin</title>
<style id="jsbin-css">
body {
font-size: 1.2em;
line-height: 1.5em;
}
</style>
</head>
<body>
<table class="table">
<thead>
<tr>
<th>Mode</th>
<th>Shutter Speed</th>
<th>Aperture</th>
</th>
</thead>
<tbody>
<tr>
<td><strong>P</strong> - programmed auto</td>
<td><i class="fa fa-camera"></i></td>
<td><i class="fa fa-camera"></i></td>
</tr>
<tr>
<td><strong>S</strong> - shutter priority auto</td>
<td><i class="fa fa-male"></i></td>
<td><i class="fa fa-camera"></i></td>
</tr>
<tr>
<td><strong>A</strong> - aperture priority auto</td>
<td><i class="fa fa-camera"></i></td>
<td><i class="fa fa-male"></i></td>
</tr>
<tr>
<td><strong>M</strong> - manual</td>
<td><i class="fa fa-male"></i></td>
<td><i class="fa fa-male"></i></td>
</tr>
</tbody>
</table>
<script id="jsbin-source-css" type="text/css">body {
font-size: 1.2em;
line-height: 1.5em;
}</script>
</body>
</html>
body {
font-size: 1.2em;
line-height: 1.5em;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment