forked from logan-r/vilify
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·25 lines (21 loc) · 785 Bytes
/
index.html
File metadata and controls
executable file
·25 lines (21 loc) · 785 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>Vilify Game</title>
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1" charset="UTF-8">
<!-- Icon -->
<link rel="shortcut icon" href="favicon.ico">
<!-- Load stylesheets -->
<link href='http://fonts.googleapis.com/css?family=Fredoka+One' rel='stylesheet' type='text/css'>
<link href="css/style.css" rel="stylesheet" />
<script src="http://code.createjs.com/createjs-2013.09.25.min.js"></script>
</head>
<body>
<canvas id="canvas" width="1280px" height="800px">
Your browser doesn't support HTML5! <!--will display this text if canvas isn't supported-->
</canvas>
<!-- Load scripts -->
<script src="js/utilities.js"></script>
<script src="js/main.js"></script>
</body>
</html>