-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.html
More file actions
23 lines (23 loc) · 872 Bytes
/
index.html
File metadata and controls
23 lines (23 loc) · 872 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<html lang="en">
<head>
<title>HTML5 Game Template</title>
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0"/>
<meta charset="utf-8"/>
<!-- Load stylesheets -->
<link href="css/style.css" rel="stylesheet"/>
<link href="css/bootstrap-responsive.min.css" rel="stylesheet"/>
<link href="css/bootstrap.min.css" rel="stylesheet"/>
<link href="css/normalize.css" rel="stylesheet"/>
</head>
<body>
<div id="container">
<canvas id="canvas" width="840px" height="640px">Your browser doesn't support HTML5! Please <a href="http://www.mozilla.org">upgrade</a> your browser.</canvas>
</div>
<!-- Load scripts -->
<script src="js/engine.js"></script>
<script src="js/script.js"></script>
<script src="js/jquery1.9.1.min.js"></script>
<script src="js/bootstrap.min.js"></script>
</body>
</html>