-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinfo.html
49 lines (47 loc) · 1.42 KB
/
info.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
<!doctype html>
<html lang="en">
<head>
<title>Android info</title>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta http-equiv="cache-control" content="no-cache" />
<meta http-equiv="expires" content="0" />
<meta http-equiv="pragma" content="no-cache" />
<link rel="stylesheet" href="./css/globals.css" />
<link rel="stylesheet" href="./css/info.css" />
<link rel="stylesheet" href="./css/keybindings.css">
<script src="./js/error-handler.js"></script>
</head>
<body>
<header>
<h1>Informations</h1>
<button
id="go-home"
onclick="onMenuOptionClick(this.id)"
style="background: transparent"
>
<svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24"
width="24"
height="24"
fill="none"
stroke="white"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
>
<path
d="M12 2 L2 12 L5 12 L5 22 L10 22 L10 15 L15 15 L15 22 L19 22 L19 12 L22 12 L12 2 Z"
/>
</svg>
</button>
</header>
<div id="container"></div>
<script src="./js/app.js"></script>
<script src="./js/utils.js"></script>
<script src="./js/info.js"></script>
<script src="./js/keybindings.js"></script>
<script src="./js/debug.js"></script>
</body>
</html>