-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathplay.htm
92 lines (74 loc) · 2.93 KB
/
play.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<!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>lozza chess engine</title>
<meta name="title" content="lozza chess engine" />
<meta name="description" content="lozza chess engine" />
<meta name="keywords" content="chess, javascript, lozza, queens, gambit, queens gambit" />
<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;}
</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="play.js"></script>
<script src="lozza.js"></script>
</head>
<body>
<p>
<a class="btn btn-success" href="index.htm">Lozza home</a>
<a class="btn btn-info" href="playhelp.htm">Help</a>
</p>
<p>
<div class="btn-group">
<button type="button" class="btn btn-primary">Play</button>
<button type="button" class="btn btn-primary dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
<span class="caret"></span>
<span class="sr-only">Toggle Dropdown</span>
</button>
<ul class="dropdown-menu">
<li><a id="playw" href="#">With white pieces</a></li>
<li><a id="playb" href="#">With black pieces</a></li>
</ul>
</div>
<a id="analyse" class="btn btn-danger" href="">Analyse</a>
<div class="btn-group">
<button id="strength" type="button" class="btn btn-primary">Strength</button>
<button type="button" class="btn btn-primary dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
<span class="caret"></span>
<span class="sr-only">Toggle Dropdown</span>
</button>
<ul class="dropdown-menu">
<li><a id="level1" href="#">Level 1</a></li>
<li><a id="level2" href="#">Level 2</a></li>
<li><a id="level3" href="#">Level 3</a></li>
<li><a id="level4" href="#">Level 4</a></li>
<li class="divider"</li>
<li><a id="level5" href="#">Level 5</a></li>
<li><a id="level6" href="#">Level 6</a></li>
<li><a id="level7" href="#">Level 7</a></li>
<li><a id="level8" href="#">Level 8</a></li>
<li class="divider"</li>
<li><a id="level9" href="#">Level 9</a></li>
<li><a id="level10" href="#">Beth</a></li>
</ul>
</div>
</p>
<p id="stats">
</p>
<p id="board"></p>
<p id="moves"></p>
<p id="info"></p>
</body>
</html>