-
Notifications
You must be signed in to change notification settings - Fork 2
/
ex.htm
35 lines (24 loc) · 972 Bytes
/
ex.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
<!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" />
<style>
body {padding: 20px;}
</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="ex.js"></script>
<script src="lozza.js"></script>
</head>
<body>
<p id="dump"></p>
</body>
</html>