-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
51 lines (48 loc) · 1.41 KB
/
index.html
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>
<title>Kocke 123</title>
<style type="text/css">
@font-face {
font-family: 'CooperBlackRegular';
src: url('/kocke123/fonts/coopbl-webfont.eot');
src: url('/kocke123/fonts/coopbl-webfont.eot?#iefix') format('embedded-opentype'),
url('/kocke123/fonts/coopbl-webfont.woff') format('woff'),
url('/kocke123/fonts/coopbl-webfont.ttf') format('truetype'),
url('/kocke123/fonts/coopbl-webfont.svg#CooperBlackRegular') format('svg');
font-weight: normal;
font-style: normal;
}
body {
background-color: #BAC7CD;
margin: 0;
padding: 0;
}
canvas {
display: block;
width: 800px;
height: 525px;
border: 4px solid black;
margin-top: 30px;
margin-left: auto;
margin-right: auto;
}
</style>
</head>
<body>
<span style="font-family: 'CooperBlackRegular';"> </span>
<canvas id="canvas" width="800" height="525"></canvas>
<script src="../jaws/src/core.js"></script>
<script src="../jaws/src/assets.js"></script>
<script src="../jaws/src/gfx.js"></script>
<script src="../jaws/src/collision_detection.js"></script>
<script src="../jaws/src/rect.js"></script>
<script src="../jaws/src/sprite.js"></script>
<script src="../jaws/src/input.js"></script>
<script src="../jaws/src/game_loop.js"></script>
<script src="js/object_extend.js"></script>
<script src="js/splash_screen.js"></script>
<script src="js/play.js"></script>
<script src="js/kocke123.js"></script>
</body>
</html>