forked from niyazpk/Chess.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
32 lines (26 loc) · 912 Bytes
/
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
<!doctype html>
<html>
<head>
<link rel="shortcut icon" href="images/bKnight.png"/>
<meta charset='utf-8'>
<title>JavaScript Chess</title>
<link rel="stylesheet" type="text/css" href="css/style.css">
</head>
<body>
<div id='board'>
</div>
<div id='info'>
Share this link with your opponent: <a href='#' class='opponent-link'></a>
<br/>
<br/>
<br/>
<div class='moveCount'></div>
<div class='error'></div>
</div>
</body>
<script src='scripts/cookie-wrapper.js'></script>
<script src='scripts/jquery-1.7.1.min.js'></script>
<script src='scripts/jquery-ui-1.8.16.custom.min.js'></script>
<script src='scripts/util.js'></script>
<script src='scripts/chess.js'></script>
</html>