-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmate.htm
59 lines (44 loc) · 1.61 KB
/
mate.htm
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
54
55
56
57
58
59
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico">
<title>javascript chess engine</title>
<meta name="title" content="javascript chess engine" />
<meta name="description" content="lozza - a javascript chess engine" />
<meta name="keywords" content="chess, javascript, lozza" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<link rel="stylesheet" type="text/css" media="screen" href="bootstrap3/css/bootstrap.min.css" />
<link rel="stylesheet" type="text/css" media="screen" href="css/chessboard-0.3.0.css" />
<style>
body {padding: 20px;}
#board {width: 100%; max-width: 350px;}
#stats {font-weight: bold;}
#moves {font-weight: bold;}
.mate {
-webkit-box-shadow: inset 0 0 3px 3px green;
-moz-box-shadow: inset 0 0 3px 3px green;
box-shadow: inset 0 0 3px 3px green;
}
</style>
<script src="jquery-ui-1.8.24/js/jquery-1.8.2.min.js"></script>
<script src="bootstrap3/js/bootstrap.min.js"></script>
<script src="js/chessboard-0.3.0.js"></script>
<script src="js/chess.js"></script>
<script src="lozuilib.js"></script>
<script src="mate.js"></script>
<script src="lozza.js"></script>
</head>
<body>
<p>
<a class="btn btn-success" href="index.htm">Lozza home</a>
<a id="start" class="btn btn-primary" href="#">Start</a>
</p>
<p id="stats">
</p>
<p id="board"></p>
<p id="moves"></p>
<p id="info"></p>
</body>
</html>