-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·24 lines (23 loc) · 940 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!DOCTYPE html>
<html>
<head>
<title>tRon</title>
<link rel="stylesheet" href="css/main.css" type="text/css" />
</head>
<body>
<header>
<nav>
</nav>
</header>
<!-- Load all our js files when the DOM and all its elements are ready. -->
<script type="text/javascript" src="javascript/crafty-0-5-3.js"></script>
<script type="text/javascript" src="javascript/constants.js"></script>
<script type="text/javascript" src="javascript/progressbar.js"></script>
<script type="text/javascript" src="javascript/scenes.js"></script>
<script type="text/javascript" src="javascript/components.js"></script>
<script type="text/javascript" src="javascript/tron.js"></script>
<script type="text/javascript">
window.addEventListener('load', Game.start);
</script>
</body>
</html>