-
Notifications
You must be signed in to change notification settings - Fork 0
/
formacao.html
45 lines (43 loc) · 1.63 KB
/
formacao.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
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Formação - Meu Portfólio</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<h1>William Barbosa</h1>
<nav>
<ul>
<li><a href="index.html">Sobre Mim</a></li>
<li><a href="formacao.html">Formação</a></li>
<li><a href="portifolio.html">Portfólio</a></li>
<li><a href="contato.html">Contato</a></li>
</ul>
</nav>
</header>
<main>
<section>
<h2>Formação</h2>
<p><strong>Graduação:</strong> Curso Superior de Tecnologia (CST) - UNINTER Centro Universitário Internacional (2009 - 2021)</p>
<p><strong>MBA:</strong> Sistemas Estruturados para Indústria 4.0 - UNINTER Centro Universitário Internacional (2022 - 2023)</p>
<p><strong>Certificações:</strong></p>
<ul>
<li>Certificação em Automação Industrial - Fatec Senai Mato Grosso do sul</li>
<li>Certificação em Indústria 4.0 - UNINTER Centro Universitário Internacional</li>
</ul>
<p><strong>Idiomas:</strong></p>
<ul>
<li>Português: Nativo</li>
<li>Inglês: Fluente</li>
<li>Espanhol: Intermediário</li>
</ul>
</section>
</main>
<footer>
<p>© 2024 William Barbosa</p>
</footer>
</body>
</html>