-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
137 lines (137 loc) · 3.8 KB
/
index.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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Personal Website</title>
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<div id="container">
<table cellspacing="20" width="100%" id="header-table">
<tr>
<td>
<center>
<img
id="profPic"
src="img/profile_pic.png"
width="150"
alt="A profile picture of myself."
/>
</center>
</td>
<td>
<h1>Thales A de Abreu</h1>
<p>Founder, CEO and CTO of <em>Elevate Co.</em></p>
<p>
I'm a Web and App Developer based in Brazil. I like cats, pizza and
a looot of coffee!
</p>
<p><strong class="info">Languages:</strong> Portuguese, English and Italian.</p>
<p>
<strong class="info">Social Networks:</strong>
<a href="https://github.com/itsthles" target="_blank">GitHub</a> |
<a
href="https://bsky.app/profile/itsthles.bsky.social"
target="_blank"
>BlueSky</a
>
</p>
</td>
</tr>
</table>
<hr />
<h2>Books and Teaching</h2>
<ul>
<li>Vanilla Zone (2021)</li>
<li>RUT! Mating Season (2023)</li>
<li>[Re]brand (2024)</li>
</ul>
<h2>Work Experience</h2>
<table border="1" cellspacing="30" style="text-align:center; border-collapse: collapse;" width="100%">
<thead>
<tr>
<th>Date</th>
<th>Work</th>
</tr>
</thead>
<tbody>
<tr>
<td>2012</td>
<td>English Teacher at FISK</td>
</tr>
<tr>
<td>2013</td>
<td>Troller Motor Company Engineering Department</td>
</tr>
</tbody>
<tfoot>
<td align="center" colspan="2"><p>To continue</p></td>
</tfoot>
</table>
<h2>Skills</h2>
<table border="1" width="100%">
<tr>
<td>
<table width="100%">
<tr>
<td>HTML 5</td>
<td>★★★★★</td>
</tr>
<tr>
<td>CSS 3</td>
<td>★★★★★</td>
</tr>
<tr>
<td>Bootstrap</td>
<td>★☆☆☆☆</td>
</tr>
<tr>
<td>Javascript</td>
<td>★★★☆☆</td>
</tr>
<tr>
<td>PHP</td>
<td>★☆☆☆☆</td>
</tr>
<tr>
<td>MySQL</td>
<td>☆☆☆☆☆</td>
</tr>
</table>
</td>
<td>
<table width="100%">
<tr>
<td>C</td>
<td>★☆☆☆☆</td>
</tr>
<tr>
<td>C++</td>
<td>★★★☆☆</td>
</tr>
<tr>
<td>C#</td>
<td>★★★☆☆</td>
</tr>
<tr>
<td>Java</td>
<td>★★☆☆☆</td>
</tr>
<tr>
<td>Python</td>
<td>★☆☆☆☆</td>
</tr>
<tr>
<td>Rust</td>
<td>★☆☆☆☆</td>
</tr>
</table>
</td>
</tr>
</table>
<a href="hobbies.html"><h2>My Hobbies</h2></a>
<a href="contact.html"><h2>Contact Me</h2></a>
</div>
</body>
</html>