-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
74 lines (70 loc) · 2.95 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
<!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>Certificard - Portfólio ImersãoDev</title>
<link rel="stylesheet" href="./src/assets/style.css">
</head>
<body>
<div class="container">
<header class="header">
<div class="perfil">
<img src="https://github.com/MPoleto.png" alt="foto da pessoa" class="perfil-foto" title="Oi! =D" />
<div class="titulo">
<h1>Mariana Poleto</h1>
<h3>Desenvolvedora Jr.</h3>
<div class="contatos">
<a href="https://codepen.io/mpoleto" target="_blank" title="Ver perfil do CodePen">
<img class="contato-icone" src="https://cdn-icons-png.flaticon.com/512/2111/2111501.png"
alt="Ícone do CodePen">
</a>
<a href="https://github.com/MPoleto" target="_blank" title="Ver perfil do GitHub">
<img class="contato-icone" src="https://cdn-icons-png.flaticon.com/512/25/25231.png"
alt="Ícone do GitHub">
</a>
<a href="https://www.linkedin.com/in/mpoleto/" target="_blank" title="Ver perfil do Linkedin">
<img class="contato-icone"
src="https://www.edigitalagency.com.au/wp-content/uploads/new-linkedin-logo-white-black-png.png"
alt="Ícone do Linkedin">
</a>
</div>
</div>
</div>
<div class="tema">
<button onclick="mudarTema()">Alterar Tema</button>
</div>
</header>
<main class="projetos">
<h4 class="projetos-titulo">Projetos<h4>
<dl>
<dt class="projetos-item">✴
<a href="./src/1-calculadora-de-media/src/index.html" target="_blank">
Calculadora de Médias</a>
</dt>
<dt class="projetos-item">✴
<a href="./src/2-conversor/src/index.html" target="_blank">
Conversor</a>
</dt>
<dt class="projetos-item">✴
<a href="./src/3-mentalista/src/index.html" target="_blank">
Mentalista</a>
</dt>
<dt class="projetos-item">✴
<a href="./src/4-aluraflix/src/index.html" target="_blank">
Aluraflix Games</a>
</dt>
<dt class="projetos-item">✴
<a href="./src/5-tabela-de-classificacao/src/index.html" target="_blank">
Tabela de Classificação</a>
</dt>
<dt class="projetos-item">✴ Super Trunfo</dt>
<dd>↪ <a href="./src/6-super-trunfo-parte-1/src/index.html" target="_blank">Parte 1</a></dd>
<dd>↪ <a href="./src/7-super-trunfo-parte-2/src/index.html" target="_blank">Parte 2</a></dd>
</dl>
</main>
</div>
<script src="./src/assets/script.js"></script>
</body>
</html>