-
Notifications
You must be signed in to change notification settings - Fork 3
/
shortcuts.html
69 lines (65 loc) · 1.06 KB
/
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
table {
font-family: arial, sans-serif;
border-collapse: collapse;
width: 100%;
}
td, th {
border: 1px solid #dddddd;
text-align: left;
padding: 8px;
}
tr:nth-child(even) {
background-color: #dddddd;
}
</style>
<title>Document</title>
</head>
<body>
<h1>Keyboard Shortcuts for WhiteBoard</h1>
<table>
<tr>
<th>Tool</th>
<th>Keyboard Shortcut</th>
</tr>
<tr>
<td>Pen</td>
<td>P / p</td>
</tr>
<tr>
<td>Eraser</td>
<td>E / e</td>
</tr>
<tr>
<td>Clear</td>
<td>C / c</td>
</tr>
<tr>
<td>Color Selector</td>
<td>O / o</td>
</tr>
<tr>
<td>Background Color</td>
<td>B / b</td>
</tr>
<tr>
<td>Undo</td>
<td>U / u</td>
</tr>
<tr>
<td>Increase Size</td>
<td>+</td>
</tr>
<tr>
<td>Decrease Size</td>
<td>-</td>
</tr>
</table>
</body>
</html>