forked from MBing/sidescroller
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
28 lines (28 loc) · 869 Bytes
/
index.html
File metadata and controls
28 lines (28 loc) · 869 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
26
27
28
<!DOCTYPE html>
<html>
<head>
<title>TheOpenCodex Sidescroller HTML5 Game</title>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="css/main.css" rel="stylesheet">
<!--[if lt IE 9]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<body>
<noscript>
<div class="error-msg">
<p>Please enable JavaScript to experience the game.</p>
</div>
</noscript>
<canvas id="theCanvas">
<div class="error-msg">
<p>Your browser doesn't support the HTML5 canvas element!</p>
</div>
</canvas>
<script>window.jQuery || document.write('<script src="js/jquery.min.js"><\/script>');</script>
<script src="js/main.js"></script>
<script src="js/map.js"></script>
</body>
</html>