-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
28 lines (25 loc) · 1.17 KB
/
index.html
File metadata and controls
28 lines (25 loc) · 1.17 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
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:fb="http://ogp.me/ns/fb#">
<head>
<title>Connectr</title>
<meta charset="utf-8">
<link rel="stylesheet" href="style.css">
</head>
<body>
<script src="https://code.createjs.com/soundjs-0.6.2.min.js"></script>
<script type="text/javascript">window.createjs || document.write("<script type=\"text\/javascript\" src=\"ts\/soundjs-0.6.2.min.js\"><\/script>");</script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script type="text/javascript">window.jQuery || document.write("<script type=\"text\/javascript\" src=\"js\/jquery.min.js\"><\/script>");</script>
<script defer src="js/game.js" type="text/javascript"></script>
<script defer src="js/content.js" type="text/javascript"></script>
<script defer src="js/logic.js" type="text/javascript"></script>
<script defer src="js/graph.js" type="text/javascript"></script>
<script type="text/javascript">
window.onload = function()
{
window.game = new Game();
}
</script>
</body>
</html>