blob: 440e7ffaa284d68f7d958153de5aaf2941ef8907 (
plain)
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
|
<!doctype html>
<html lang="en">
<head>
<title>Math Games</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<style>
canvas {
/* transform-origin: top left; */
/* transform: scale(4, 4); */
position: absolute;
left: 0;
top: 0;
}
</style>
</head>
<body style="padding:0; margin:0; overflow:hidden;">
<canvas id="canvas"></canvas>
<script src="/math/static/help.js"></script>
<script src="/math/static/nim.js"></script>
<script src="/math/static/solitaire.js"></script>
<script src="/math/static/kings-corner.js"></script>
<script src="/math/static/black-hole.js"></script>
<script src="/math/static/main.js"></script>
</body>
</html>
|