-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclassic.html
41 lines (39 loc) · 1.08 KB
/
classic.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
<!DOCTYPE html>
<html lang="sk-SK">
<head>
<link rel="shortcut icon" href="favicon.ico"/>
<title>InframiesTD</title>
<meta charset="utf-8">
<!--script src="//cdn.jsdelivr.net/npm/[email protected]/dist/phaser.min.js"></script-->
<script src="scripts/phaser.min.js"></script>
<script src="scripts/game_classic.js"></script>
<style>
body{
font-family: Arial,sans-serif;
background-color: #000;
margin:0;
text-align:center;
color: #FFF;
}
#main-game{
margin:auto;
}
@font-face {
font-family: font1;
src: url('assets/fonts/hachicro.ttf');
}
@font-face {
font-family: font2;
src: url('assets/fonts/SourceSansPro-Bold.ttf');
}
</style>
</head>
<body>
<!-- game -->
<div id="main-game">
</div>
<button style='text-decoration:none; color:black; padding: 5px;'>
<a style='text-decoration:none; color:black; padding: 5px;' href="index.html">Play latest</a>
</button>
</body>
</html>