-
Notifications
You must be signed in to change notification settings - Fork 0
/
apps.html
81 lines (81 loc) · 2.68 KB
/
apps.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
<!DOCTYPE HTML>
<html>
<head>
<meta charset="UTF-8"></meta>
<title>APPs</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">
<p> </p>
<center>
<h2>APPs</h2>
<p>Here you can use some APPs I developed using Javascript</p>
</center>
<ul>
<li><a href="derivative.html">Derivative Calculator</a>: An APP that calculates the derivative of a function</li>
<li><a href="snake.html">Snake</a>: A remake of the classic game "Snake"</li>
<li><a href="tetris.html">Tetris</a>: A remake of the classic game "Tetris"</li>
<li><a href="missile_command.html">Missile Command</a>: A remake of the classic game "Missile Command"</li>
<li><a href="maze.html">3D Maze</a>: A game were the objective is to take a ball to the end of the maze</li>
<li><a href="tower_deffense.html">Monster Invasion</a>: A tower deffense game</li>
<li><a href="julia.html">Julia set</a>: An app for visualizing Julia sets, proposed by <a href="https://www.youtube.com/watch?v=fAsaSkmbF5s">The Coding Train</a></li>
</ul>
<p> </p>
</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>