-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
93 lines (88 loc) · 2.36 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
<!DOCTYPE html>
<html lang="pt-br" dir="ltr">
<head>
<meta charset="utf-8" />
<title>My personal blog</title>
<link rel="stylesheet" href="css/styles.css" />
</head>
<body style="">
<h1>Isabella Bologna Salomão</h1>
<img
src="https://avatars.githubusercontent.com/u/20494654?v=4"
alt="my photo"
height="200"
/>
<p>
<em>Embedded Engineer</em> at <a href="https://www.tembici.com.br/pt/">Tembici</a>
<!-- <a href="https://www.omni-electronica.com.br/">Omni Electronica</a> and
<a href="http://www.epistemic.com.br/">Epistemic</a> -->
</p>
<p>
Engenheira eletrônica com experiência de X anos com desenvolvimento de software e hardware para sistemas embarcados.
</p>
<hr />
<h2>Formação Acadêmica</h2>
<table cellspacing="10">
<thead>
<tr>
<th>Datas</th>
<th>Curso</th>
<th>Instituição</th>
</tr>
</thead>
<tbody>
<tr>
<td>2016-2021</td>
<td>Engenharia Elétrica - Ênfase em Eletrônica e Sistemas Computacionais</td>
<td>Escola Politécnica da Universidade de São Paulo (POLI-USP)</td>
</tr>
<tr>
<td>2012-2015</td>
<td>Técnico em Eletrônica Integrado ao Ensino Médio</td>
<td>Instituto Federal de São Paulo</td>
</tr>
</tbody>
</table>
<hr />
<h2><a href="hobbies.html">Hobbies</a></h2>
<ol>
<li><a href="https://www.thunderatz.org">Robots</a></li>
<li>Crochet</li>
<li>Books</li>
</ol>
<hr />
<h2>Skills</h2>
<table cellspacing="10">
<tbody>
<tr>
<td>C language</td>
<td>⭐⭐⭐⭐⭐</td>
</tr>
<tr>
<td>C++</td>
<td>⭐⭐⭐⭐</td>
</tr>
<tr>
<td>Hardware Design</td>
<td>⭐⭐⭐⭐</td>
</tr>
<tr>
<td>Python</td>
<td>⭐⭐⭐⭐</td>
</tr>
<tr>
<td>HTML</td>
<td>⭐⭐</td>
</tr>
<tr>
<td>CSS</td>
<td>⭐</td>
</tr>
</tbody>
</table>
<p>
<a href="contact-me.html">Contact me</a>
</p>
<footer>copyright</footer>
</body>
</html>