-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstormmain.html
50 lines (48 loc) · 2.49 KB
/
stormmain.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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<!DOCTYPE html>
<html>
<head>
<meta content="text/html; charset=utf-8" http-equiv="content-type">
<meta name="author" content="Lutz Kellen, Daniel Michael, Keenan Jones">
<meta name="description" content="HTML5/Javascript Storm Defense for UW Stout's GDD 325 Client: Science Olympiad">
<title>Storm Defense</title>
<link rel="stylesheet" href="stylesheets/MainCSS.css">
<!-- Touch Icons - iOS and Android 2.1+ 180x180 pixels in size. -->
<link rel="apple-touch-icon-precomposed" href="../../favicon/stormdef180.png">
<!-- Firefox, Chrome, Safari, IE 11+ and Opera. 196x196 pixels in size. -->
<link rel="icon" href="../../favicon/stormdef196.png">
<script src="scripts/SDAssetMan.js" type="text/javascript"></script>
<script src="scripts/SDMainMenu.js" type="text/javascript"></script>
<script src="scripts/SDCredits.js" type="text/javascript"></script>
<script src="scripts/SDTutorial.js" type="text/javascript"></script>
<script src="scripts/SDScore.js" type="text/javascript"></script>
<script src="scripts/SDAsteroids.js" type="text/javascript"></script>
<script src="scripts/SDLasers.js" type="text/javascript"></script>
<script src="scripts/SDSuperlasers.js" type="text/javascript"></script>
<script src="scripts/SDParticles.js" type="text/javascript"></script>
<script src="scripts/StormDefense.js" type="text/javascript"></script>
</head>
<body oncontextmenu="return false;">
<div style="font-family: Akashi;">
<div style="text-align:center; display:block;" id="LoadingDiv">
<img src="images/loading/loadingBkgImg.png" alt="Loading Background">
</div>
<div style="cursor:crosshair">
<canvas id="canvasMenu" style="border:5px solid #333333; display:none;" height="720" width="1280">
Your browser does not support HTML 5 Canvas Tag
</canvas>
<canvas id="canvasCredits" style="border:5px solid #333333; display:none;" height="720" width="1280">
Your browser does not support HTML 5 Canvas Tag
</canvas>
<canvas id="canvasGame" style="border:5px solid #333333; display:none;" height="720" width="1280">
Your browser does not support HTML 5 Canvas Tag
</canvas>
<canvas id="canvasTutorial" style="border:5px solid #333333; display:none;" height="720" width="1280">
Your browser does not support HTML 5 Canvas Tag
</canvas>
<canvas id="canvasScore" style="border:5px solid #333333; display:none;" height="720" width="1280">
Your browser does not support HTML 5 Canvas Tag
</canvas>
</div>
</div>
</body>
</html>