-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
87 lines (87 loc) · 2.6 KB
/
about.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
<!DOCTYPE HTML>
<html>
<head>
<meta charset="UTF-8"></meta>
<title>About me</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>
<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 class="active">
<a href="about.html">About me</a>
</li>
</ul>
</header>
<div class="paper">
<div class="content">
<center>
<h2>About me</h2>
<div class="row">
<div class="column">
<img id="perfil" src="assets/perfil.jpg">
</div>
<div class="column">
<p>
Born and raised in the small city of Porto Ferreira. Searching at the internet
for an easy way to make a game, met Game Maker, and started to program a simple
RPG, only with youtube videos as reference. Abandoned the project many times
because of unknown bugs in the code. After spending lots of hours thinking how
to solve bugs and how to implement features, decided to apply for computer
science to learn more about that fascinating area. Came to São Paulo to
study at USP, and got even more delighted with the area, mainly
with subjects related to artificial intelligence, machine learning and games.
</p>
</div>
</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>