-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
33 lines (33 loc) · 1.39 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Quoridor</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,user-scalable=no,initial-scale=1">
<meta property="og:title" content="Quoridor"/>
<meta property="og:url" content="https://iliagrigorevdev.github.io/quoridor-web/"/>
<meta property="og:description" content="Board game against AI in which you either move a pawn or place a wall to cross the board first."/>
<meta property="og:type" content="game"/>
<meta property="og:image" content="https://iliagrigorevdev.github.io/quoridor-web/icon.png"/>
<meta property="og:image:width" content="512"/>
<meta property="og:image:height" content="512"/>
<link rel="icon" href="favicon.ico" type="image/x-icon"/>
<style>
body { margin: 0; overflow: hidden; }
canvas { touch-action: none; width: 100%; height: 100%; }
</style>
</head>
<body>
<div id="container">
<canvas></canvas>
</div>
<script src="js/filament.js"></script>
<script src="//unpkg.com/gl-matrix@2.8.1/dist/gl-matrix-min.js"></script>
<script src="//cdn.jsdelivr.net/npm/onnxjs@0.1.8/dist/onnx.min.js"></script>
<script src="js/Quoridor.js"></script>
<script src="js/Intersection.js"></script>
<script src="js/Piece.js"></script>
<script src="js/Player.js"></script>
<script src="js/Scene.js"></script>
</body>
</html>