forked from op12no2/lozza-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconsole.htm
51 lines (38 loc) · 1.47 KB
/
console.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
<!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;}
#stats {font-weight: bold;}
#board {width: 100%; max-width: 350px;}
input {padding: 3px;}
</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="lozuilib.js"></script>
<script src="console.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="consolehelp.htm">Help</a>
</p>
<form autocomplete="off" role="form">
<input class="form-control" id="stdin" type="text" size=80 value="">
</form>
<p id="info">
</p>
</body>
</html>