diff options
Diffstat (limited to 'src/html')
-rw-r--r-- | src/html/chess.html | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/html/chess.html b/src/html/chess.html new file mode 100644 index 0000000..486b395 --- /dev/null +++ b/src/html/chess.html @@ -0,0 +1,16 @@ +<!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"> +</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> |