blob: 9eea75060c74579085511525bb2dc6aad645ac25 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<!doctype html>
<html lang="en">
<head>
<title>Chess</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="Correspondance chess">
</head>
<body style="padding:0; margin:0; overflow:hidden;">
<canvas id="canvas"></canvas>
<script src="/js/chess-draw.js"></script>
<script src="/js/chess-main.js"></script>
</body>
</html>
|