-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
89 lines (81 loc) · 2.41 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="author" content="Pedro Euzebio" />
<meta
name="description"
content="DevLinks é um agregador de links responsivo e com troca de tema que você pode usar como cartão de visitas nas suas redes sociais."
/>
<title>DevLinks</title>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap"
rel="stylesheet"
/>
<link rel="shortcut icon" href="assets/pedro.png" type="image/png" />
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div id="app">
<header>
<img
src="assets/pedro.png"
alt="Foto do Pedro Euzebio sorrindo com camisa social azul clara."
/>
<h1>Pedro Euzebio</h1>
<p>
Desenvolvedor Full Stack | React e Node.js <br />
Tecnólogo em Sistemas para Internet (2/5) <br />
Técnico em Informática para Internet (2/3) <br />
Técnico em Informática <br />
Certificado AWS Academy Cloud Foundations <br />
pedroeuzebio.contato@gmail.com
</p>
</header>
<div id="switch">
<button id="switch-button"></button>
<span></span>
</div>
<ul>
<li>
<a
href="assets/Currículo - Desenvolvedor Full Stack React e Node.js.pdf"
download
>
CV
</a>
</li>
<li>
<a href="https://github.com/pedroeuzebiooo" target="_blank">
GitHub
</a>
</li>
<li>
<a href="https://linkedin.com/in/pedroeuzebio" target="_blank">
LinkedIn
</a>
</li>
<li>
<a
href="https://pedroeuzebio.notion.site/Pedro-Euzebio-248a9c52630e4326a84122a9c703924a"
target="_blank"
>
Portfólio
</a>
</li>
<li>
<a href="https://youtube.com/@pedroeuzebiooo" target="_blank">
YouTube
</a>
</li>
</ul>
<footer>
<p>2024 | Pedro Euzebio</p>
</footer>
</div>
<script src="index.js"></script>
</body>
</html>