-
Notifications
You must be signed in to change notification settings - Fork 1
/
game.html
executable file
·29 lines (26 loc) · 1.04 KB
/
game.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Alienator</title>
<meta charset="UTF-8">
<link rel="icon" type="image/png" href="images/icons/favicon.ico"/>
<link rel="stylesheet" type="text/css" href="vendor/bootstrap/css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="fonts/font-awesome-4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" type="text/css" href="fonts/Linearicons-Free-v1.0.0/icon-font.min.css">
<link rel="stylesheet" type="text/css" href="fonts/iconic/css/material-design-iconic-font.min.css">
<link rel="stylesheet" type="text/css" href="css/util.css">
<link rel="stylesheet" type="text/css" href="css/game.css">
<script src="js/main.js"></script>
<script src='http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js'></script>
<script src='js/engine.js'></script>
<script src='js/game.js'></script>
<script src='js/level.js'></script>
<style>
</style>
</head>
<body>
<div id='game-wrapper'>
<canvas id='gameboard' width='500' height='500'></canvas>
</div>
</body>
</html>