-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
73 lines (62 loc) · 2.82 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
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Meu Portfolio</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
<link rel="stylesheet" href="style.css">
</head>
<body>
<nav>
<h1>Alexandre - Desenvolvedor Backend</h1>
<button class="menu-toggle" aria-label="Toggle navigation">
☰
</button>
<div class="nav-links">
<ul>
<li><a href="#sobre-mim">Sobre Mim</a></li>
<li><a href="#habilidades">Habilidades</a></li>
<li><a href="#formacoes">Formações</a></li>
<li><a href="#contato">Contato</a></li>
</ul>
</div>
</nav>
<div class="container">
<section id="sobre-mim">
<h2 class="carro">Sobre Mim</h2>
<p>t is a long established fact that a reader will be distracted by the readable content of a page when looking at its layou</p>
<p> t is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout is a long established fact that a reader will be distracted by the readable content of a page when looking at its layou</p>
</section>
<section id="habilidades">
<h2>Habilidades</h2>
<ul>
<li>Python</li>
<li>MySQL</li>
<li>Comunicativo</li>
<li>Trabalho em equipe</li>
</ul>
</section>
<section id="formacoes">
<h2>Formações</h2>
<p>Iniciei meus estudos na TI em 2024, onde comecei minha primeira faculdade.</p>
<strong class="instituicao">Uninter</strong>Tecnólogo em Análise e desenvolvimento de sistemas 2024 - 2026
</section>
<section id="contato">
<h2>Contato</h2>
<p>Aqui você pode entrar em contato comigo:</p>
<p><a href="mailto:[email protected]"><i class="fas fa-envelope"></i>Email: [email protected]</a></p>
<p><a href="" target="_blank"><i class="fab fa-linkedin"></i></a></p>
<p><a href="https://wa.me/551899634-8054" target="_blank"><i class="fab fa-whatsapp"></i>18 99634-8054</a></p>
</section>
</div>
<footer>
<p>© 2024 Alexandre - Desenvolvedor Backend. Todos os direitos reservados.</p>
</footer>
<script>
document.querySelector('.menu-toggle').addEventListener('click', function() {
document.querySelector('.nav-links').classList.toggle('active');
});
</script>
</body>
</html>