-
Notifications
You must be signed in to change notification settings - Fork 237
/
shortcuts.html
42 lines (42 loc) · 914 Bytes
/
shortcuts.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Shortcut Keys</title>
<link rel="stylesheet" type="text/css" href="css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="css/common.css">
<style>
h2 {
margin-top: 30px;
margin-bottom: 20px;
}
</style>
<script src="js/defaults.js"></script>
</head>
<body>
<div class="container">
<h2>
Shortcut Keys
</h2>
<table class="table table-bordered table-striped">
<tr>
<td>Play/Pause</td>
<td>Alt/Option + P</td>
</tr>
<tr>
<td>Stop</td>
<td>Alt/Option + O</td>
</tr>
<tr>
<td>Forward</td>
<td>Alt/Option + Period</td>
</tr>
<tr>
<td>Rewind</td>
<td>Alt/Option + Comma</td>
</tr>
</table>
</div>
</body>
</html>