-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
60 lines (55 loc) · 2.17 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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sobre mim</title>
<link rel="stylesheet" href="./styles/style.css">
</head>
<body>
<header class="cabecalho">
<nav class="cabecalho__menu">
<a class="cabecalho__menu__link" href="index.html">Home</a>
<a class="cabecalho__menu__link" href="about.html">Sobre mim</a>
<a class="cabecalho__menu__link" href="contact.html">Contatos</a>
</nav>
</header>
<main class="apresentacao">
<section class="apresentacao__conteudo">
<h1 class="subtitulo">DESCRIÇÃO:</h1>
<p class="apresentacao__conteudo__texto">
Sou apaixonado por tecnologia e por aprender, além disso amo trabalhar em equipe e trocar experiências com os colegas.
Minhas maiores qualidades:<br> Resiliência, Comunicação, Organização, Flexibilidade e Adaptabilidade.
<br><br>
</p>
<h2 class="subtitulo">FORMAÇÃO ACADÊMICA:</h2>
<ul class="lista">
<li>2024 - Pós-Graduação, Cybersecurity:Analise e defesa de sistemas de comunicação - Educaminas</li>
<li>2023 - Análise e desenvolvimento de sistemas Faculdade Católica Paulista</li>
<li>2023 - Scholarships: Fintechs - University of Chicago</li>
</ul>
<br>
<h2 class="subtitulo">SKILLS</h2>
<p class="apresentacao__conteudo__texto">
🔥 HTML
🔥 CSS
🔥 JavaScript <br>
🔥 Python
🔥 SQL
🔥 Git
🔥 Inglês(básico)
<br>
APRENDENDO:
🔥 Angular
🔥 React
🔥 Java
</p>
</section>
<img class="apresentacao__imagem" alt="Foto:Leandro Goulart ">
</main>
<footer class="rodape">
<p>Desenvolvido por Leandro Goulart.</p>
</footer>
</body>
</html>