-
Notifications
You must be signed in to change notification settings - Fork 0
/
tower_deffense.html
94 lines (94 loc) · 2.54 KB
/
tower_deffense.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
<!DOCTYPE HTML>
<html>
<head>
<meta charset="UTF-8"></meta>
<title>Monster Invasion</title>
<link rel="stylesheet" type="text/css" href="style.css" />
</head>
<body>
<header>
<div id="image"></div>
<ul class="navbar">
<li>
<a href="index.html">Home</a>
</li>
<li class="active">
<a href="apps.html">Web APPs</a>
<ul>
<li><a href="derivative.html">Derivative calculator</a></li>
<li><a href="snake.html">Snake</a></li>
<li><a href="tetris.html">Tetris</a></li>
<li><a href="missile_command.html">Missile command</a></li>
<li><a href="maze.html">3D Maze</a></li>
<li><a href="tower_deffense.html">Monster invasion</a></li>
<li><a href="julia.html">Julia set</a></li>
</ul>
</li>
<li>
<a href="projects.html">Projects</a>
<ul>
<li><a href="https://github.com/IceMage144/Algorithms">Algorithms</a></li>
<li><a href="https://github.com/IceMage144/ScrapyCrawlers">Crawlers</a></li>
<li><a href="https://uspgamedev.org/">Gamedev</a></li>
</ul>
</li>
<li>
<a href="events.html">Events</a>
</li>
<li>
<a href="mac0499/index.html">TCC</a>
</li>
<li>
<a href="about.html">About me</a>
</li>
</ul>
</header>
<div class="paper">
<div class="content">
<center>
<p> </p>
<div id="gamediv">
<canvas id="game"></canvas>
<script type="text/javascript" src="game_engine.js"></script>
<script type="text/javascript" src="TD_script.js"></script>
</div>
<p> </p>
<p>-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-</p>
<div class="description">
<h2>How to play</h2>
<table>
<tbody>
<tr>
<td>
<ul>
<li>Mouse: Everything</li>
<li>Buy towers from the shop and build them in a nice place</li>
<li>Click on towers to inspect and upgrade</li>
<li>Defeat huge waves of monsters with your military weapons!!</li>
</ul>
</td>
</tr>
</tbody>
</table>
</div>
<p> </p>
</center>
</div>
</div>
<footer id="footer">
<table class="footer">
<tbody>
<tr>
<td>
<ul class="footer">
<li><a href="https://github.com/IceMage144"><img src="assets/github.png"></a></li>
<li><a href="https://www.facebook.com/joao.gabriel.564813"><img src="assets/facebook.png"></a></li>
<li><a href="mailto:joao.basi@usp.br"><img src="assets/mail.png"></a></li>
</ul>
</td>
</tr>
</tbody>
</table>
</footer>
</body>
</html>