-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathindex.html
More file actions
50 lines (44 loc) · 1.1 KB
/
index.html
File metadata and controls
50 lines (44 loc) · 1.1 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1.0,maximum-scale=1.0,user-scalable=no">
<meta name="description" content="" />
<title>DICEWARS</title>
<link rel="apple-touch-icon-precomposed" href="https://www.gamedesign.jp/img/icon.png">
<link rel="shortcut icon" href="https://www.gamedesign.jp/img/favicon.ico">
<link href='https://fonts.googleapis.com/css?family=Anton|Roboto' rel='stylesheet' type='text/css'>
<style>
body{
background:#eeeeee;
margin:0;
padding:0;
text-align:center;
}
canvas{
background-color: #ffffff;
display:block;
margin:auto;
}
a:link{
color:#aaaaaa;
text-decoration:none;
}
a:visited{
color:#aaaaaa;
text-decoration:none;
}
</style>
<script src="https://code.createjs.com/createjs-2015.11.26.min.js"></script>
<script src="areadice.js"></script>
<script src="mc.js"></script>
<script src="ai_default.js"></script>
<script src="ai_defensive.js"></script>
<script src="ai_example.js"></script>
<script src="game.js"></script>
<script src="main.js"></script>
</head>
<body>
<canvas id="myCanvas"></canvas>
</body>
</html>