-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·24 lines (21 loc) · 860 Bytes
/
index.html
File metadata and controls
executable file
·24 lines (21 loc) · 860 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1">
<meta charset="utf-8">
<title>Keyboard Test App</title>
<script type="text/javascript" src="js/main.js"></script>
<link rel="stylesheet" type="text/css" href="style/keyboard.css" />
<link rel="stylesheet" type="text/css" href="style/ui.css" />
<!-- === locale translation technology === -->
<script defer src="js/lib/l10n.js"></script>
<link rel="ressource" type="application/l10n" href="locales/locales.ini">
</head>
<body>
<div id="keyboard">
<a id="copyKey" class="button add" data-l10n-id="copy">Copy</a>
<a id="pasteKey" class="button edit" data-l10n-id="paste">Paste</a><br />
<a id="switchLayout" class="button back" data-l10n-id="back-to-keyboard">Change to keyboard</a>
</div>
</body>
</html>