-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy path2025111790121.html
More file actions
111 lines (95 loc) · 2.84 KB
/
Copy path2025111790121.html
File metadata and controls
111 lines (95 loc) · 2.84 KB
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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Currículo Vitae</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f4f4f4;
color: #333;
margin: 0;
padding: 0;
}
header {
text-align: center;
background-color: #0073e6;
color: white;
padding: 20px;
}
header h1 {
margin: 0;
}
header p {
margin: 5px 0;
}
main {
max-width: 800px;
margin: 20px auto;
background: white;
padding: 20px;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
section {
margin-bottom: 20px;
padding-left: 10px;
border-left: 4px solid #0073e6;
}
h2 {
color: #0073e6;
}
ul {
padding-left: 20px;
}
footer {
text-align: center;
font-size: 14px;
color: #666;
padding: 10px;
background: #f4f4f4;
margin-top: 20px;
}
</style>
</head>
<body>
<header>
<h1>Italo Tavares</h1>
<p>Email: itavares119@gmail.com | Telefone: (83) 98624-7518</p>
<p>Endereço: João Pessoa, Paraíba</p>
</header>
<main>
<section>
<h2>Objetivo</h2>
<p>Me tornar um desenvolvedor fullstack especializado em segurança de dados e banco de dados.</p>
</section>
<section>
<h2>Experiência Profissional</h2>
<h3>IFPB - Estagiário </h3>
<p><strong>Período:</strong> 07/2023 - 07/24</p>
<p>Projeto de extensão dedicado a inserir os alunos em um ambiente semelhante aos das empresas em que atuamos como desenvolvedores.</p>
</section>
<section>
<h2>Formação Acadêmica</h2>
<h3>Instituto Federal da Paraíba</h3>
<p>Eletrônica - 2025</p>
<h3>UNIESP</h3>
<p>Cursando Sistemas para internet - Previsão de termino 2025</p>
</section>
<section>
<h2>Habilidades</h2>
<ul>
<li>Possuo conhecimentos sobres as linguagens de programação C e Python (Django)</li>
<li>Já tive experiências com o desenvolvimento de banco de dados, já trabalhei com PostrgreSQL e integração de API's</li>
<li>Conhecimentos em Hardware e Eletrônica</li>
<li>Inglês Intermediário</li>
<li>Japonês Básico</li>
</ul>
</section>
</main>
<footer>
<p>Atualizado em: 03/2025</p>
</footer>
</body>
</html>