-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
74 lines (69 loc) · 1.92 KB
/
contact.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
<!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>Contatos</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__redes">
<h1 class="apresentacao__conteudo__titulo">
Entre em contato:
</h1>
<div class="apresentacao__links">
<a
class="apresentacao__links__navegacao"
href="https://github.com/LeandroGoulart"
target="_blank">
<img src="./assets/github.png" />
Github
</a>
<a
class="apresentacao__links__navegacao"
href="https://www.linkedin.com/in/leandrovgoulart/"
target="_blank">
<img src="./assets/linkedin.png" />
Linkedin
</a>
<a
class="apresentacao__links__navegacao"
href="https://www.instagram.com/leovg33/"
target="_blank">
<img src="./assets/instagram.png" />
Instagram
</a>
<a
class="apresentacao__links__navegacao"
href="https://www.dio.me/users/leandrovgoulart"
target="_blank">
Blog DIO
</a>
<a
class="apresentacao__links__navegacao"
href="./assets/Curriculo atualizado.pdf"
target="_blank">
Currículo
</a>
</div>
</section>
<img
class="apresentacao__imagem"
alt="Foto:Leandro Goulart" />
</main>
<footer class="rodape">
<p>Desenvolvido por Leandro Goulart.</p>
</footer>
</body>
</html>