-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
53 lines (48 loc) · 1.42 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<!DOCTYPE html>
<html>
<head>
<title>Chess neural network - playground</title>
<link
rel="apple-touch-icon"
sizes="180x180"
href="static/favicons/apple-touch-icon.png"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="static/favicons/favicon-32x32.png"
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href="static/favicons/favicon-16x16.png"
/>
<link rel="manifest" href="static/favicons/site.webmanifest" />
<meta name="msapplication-TileColor" content="#da532c" />
<meta name="theme-color" content="#ffffff" />
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link
href="https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;500;700&display=swap"
rel="stylesheet"
/>
<link
rel="stylesheet"
type="text/css"
href="static/styles/chessboard-1.0.0.min.css"
/>
<link rel="stylesheet" type="text/css" href="static/styles/styles.css" />
<script src="static/js/jquery.min.js"></script>
<script src="static/js/chessboard-1.0.0.min.js"></script>
</head>
<body style="font-size: 20px">
<nav class="navigation">
<a href="/selfplay">Play vs itself</a><br />
<a href="/newgame">New game</a><br />
</nav>
<div id="board" style="width: 600px"></div>
<p></p>
<script src="static/js/board.js"></script>
</body>
</html>