-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
22 lines (18 loc) · 709 Bytes
/
index.html
File metadata and controls
22 lines (18 loc) · 709 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>jCode Lab</title>
<meta name="description" content="">
<meta name="author" content="Jason Millward">
<link rel='stylesheet' href='./css/dodger.css' type='text/css' media='screen' />
</head>
<body>
<!-- Nothing but a blank canvas to work on -->
<canvas id="dodgerCanvas" width="500" height="400"></canvas>
<!-- Load jquery and other required js files -->
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script>
<script src="./js/classes.js"></script>
<script src="./js/dodger.js"></script>
</body>
</html>