-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
28 lines (24 loc) · 710 Bytes
/
index.html
File metadata and controls
28 lines (24 loc) · 710 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>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>replit</title>
<link href="style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<canvas id="gamescreen"></canvas>
<script src='images.js'></script>
<script src='controller.js'></script>
<script src='projectiles.js'></script>
<script src='physics.js'></script>
<script src='vampires.js'></script>
<script src='game.js'></script>
<script src='hero.js'></script>
<script src='powerup.js'></script>
<script src='background.js'></script>
<script src='obstacles.js'></script>
<script src='menu.js'></script>
<script src='canvas.js'></script>
</body>
</html>