-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
82 lines (66 loc) · 3.1 KB
/
index.html
File metadata and controls
82 lines (66 loc) · 3.1 KB
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
<!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">
<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=VT323&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="css/estilos.css">
<link rel="stylesheet" href="css/rolagem.css">
<title>Mini Projeto - Mapa dev week </title>
</head>
<body>
<main class="cartao">
<div class="minhas-informacoes">
<img src="./foto/imagem.jpg" alt="foto de perfil" />
<h1 class="nome">Marcela Cardoso</h1>
<h2 class="cargo">Desenvolvedora Front end Júnior</h2>
</div>
<div class="conteudo">
<ul class="abas">
<li class="aba">
<img src="./foto/sobre.gif" alt="ícone de sobre mim" />
</li>
<li class="aba">
<img src="./foto/coracao.gif" alt="ícone de redes sociais" />
</li>
</ul>
<div class="informacoes-abas">
<div class="informacao">
<h3 class="sub-titulo">Sobre</h3>
<div class="descricao">
<p>Oi! meu nome é Marcela Cardoso, seja bem-vindo(a)!</p>
<p>
Sou uma pessoa apaixonada pela programação desde que eu tinha 15
anos. Sempre tive o sonho de trabalhar com programação e
atualmente comecei a colocar esse sonho em prática estudando
<span>HTML, CSS e JavaScript</span>. Gosto muito de café (até demais), e meus
principais hobbies são jogar MMO RPG, ver animes e séries.
</p>
</div>
</div>
<div class="informacao">
<h3 class="sub-titulo">Minhas redes</h3>
<ul class="redes-sociais">
<li>
<a href="https://www.canva.com/design/DAFMts8qnqs/AzgmExEpnAeThAfljwbffQ/view?utm_content=DAFMts8qnqs&utm_campaign=designshare&utm_medium=link2&utm_source=sharebutton" target="_blank" class="curriculo">Currículo</a>
</li>
<li>
<a href="https://www.linkedin.com/in/marcelajesuscardosodasneves/" target="_blank" class="linkedin">LinkedIn</a>
</li>
<li>
<a href="https://github.com/marcelajcn" target="_blank" class="github">GitHub</a>
</li>
</ul>
</div>
</div>
</div>
</main>
<script src="js/index.js"></script>
</body>
</html>
</body>
</html>