-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
29 lines (26 loc) · 1.23 KB
/
index.html
File metadata and controls
29 lines (26 loc) · 1.23 KB
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>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<meta name="viewport" content="user-scalable=no, width=device-width, initial-scale=1.0, maximum-scale=1.0"/>
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
<title>GamesMadeMe™ - NonStop Games Assignment</title>
<link href='http://fonts.googleapis.com/css?family=Slackey' rel='stylesheet' type='text/css'/>
<link type="text/css" rel="stylesheet" href="css/reset.css" />
<link type="text/css" rel="stylesheet" href="css/style.css" />
</head>
<body>
<div id="container">
<canvas id="toon" width="100px" height="100px"> </canvas>
<canvas id="shadow" width="100px" height="44px"> </canvas>
<canvas id="main"> </canvas>
</div>
<!-- use either jQuery or Zepto -->
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js"></script>
<script type="text/javascript" src="js/utils.js"></script>
<script type="text/javascript" src="js/game.js"></script>
<script type="text/javascript" src="js/ball.js"></script>
<script type="text/javascript">$(function() { TheGame(); });</script>
</body>
</html>