-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
76 lines (71 loc) · 2.3 KB
/
Copy pathindex.html
File metadata and controls
76 lines (71 loc) · 2.3 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
<!DOCTYPE html>
<html lang="en">
<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>Linktree</title>
<link href="https://fonts.googleapis.com/css2?family=Architects+Daughter&family=Raleway&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/style.css">
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-WD44M2LW4J"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-WD44M2LW4J');
</script>
</head>
<body>
<div class="profile">
<img src="img/bea.jpeg" alt="Beatriz" class="avatar">
<h1>Beatriz Ferraz</h1>
<h2>Desenvolvedora JR | Graduanda em S.I</h2>
</div>
<ul class="social">
<li>
<a href="https://github.com/bea-ferraz">
<img src="img/github.svg" alt="github">
</a>
</li>
<li>
<a href="https://www.linkedin.com/in/beatrizferraz-/">
<img src="img/linkedin.svg" alt="linkedin">
</a>
</li>
<li>
<a href="mailto:beaferraz.contato@gmail.com">
<img src="img/gmail.png" alt="gmail">
</a>
</li>
</ul>
<ul class="links-list">
<li>
<a href="https://www.rocketseat.com.br/discover">
DICA
<span>Curso de programação gratuito para iniciantes.</span>
</a>
</li>
</ul>
<ul class="links-list">
<li>
<a href="https://bea-ferraz.github.io/Portifolio/">
PORTIFÓLIO
<span>Acesse aqui o meu portifólio.</span>
</a>
</li>
<li>
<a href="https://drive.google.com/file/d/16ZyUYrZ14SaNI1XPeeE_AsOnaWbTzIMd/view?usp=sharing">
CURRÍCULO
<span>Acesse aqui o meu currículo.</span>
</a>
</li>
<li>
<a href="https://www.youtube.com/watch?v=lH8iDuJs6Yc">
PITCH PESSOAL
<span>Acesse aqui o meu video de apresentação.</span>
</a>
</li>
</ul>
</body>
</html>