-
Notifications
You must be signed in to change notification settings - Fork 0
/
curriculo.html
55 lines (55 loc) · 2.21 KB
/
curriculo.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Home</title>
<link rel="icon" type="image/x-icon" href="./assets/home.png">
<link rel="stylesheet" href="styles.css">
</head>
<body id="home">
<header class="cabecalho">
<nav class="navbar">
<a data-active="home" class="navbar_text" href="curriculo.html">home
<img class="iconpng" src="./assets/home.png" alt="home icon">
</a>
<a data-active="habilidades" class="navbar_text" href="habilidades.html">habilidades
<img class="iconpng" src="./assets/habilidades.png" alt="habilidades icon">
</a>
<a data-active="projetos"class="navbar_text" href="projetos.html">projetos
<img class="iconpng" src="./assets/projetos.png" alt="projetos icon">
</a>
</nav>
</header>
<script src="scripts.js"></script>
<main class="main_content">
<section class="content">
<h1 class="titulo_content" id="titulo">Olá, me chamo <br>Marcelo <span class="surname">Ferreira</span>.</h1>
<p class="descricao_content" >Vivamus urna nisi, lobortis <br>
ut euismod in, sollicitudin ac ipsum. Mauris a libero id <br>
velit pulvinar scelerisque at quis magna. Aliquam erat volutpat.</p>
<h2 class="titulo_links">Minhas Redes</h2>
<div class="links">
<a class="button_links" href="https://github.com/Marcew44">
<img src="./assets/github.png">
Github
</a>
<a class="button_links" href="https://t.me/Marcew">
<img src="./assets/telegram.png">
Telegram
</a>
<a class="button_links" href="https://discord.com/users/285170811386593280">
<img src="./assets/discord.png">
Discord
</a>
</div>
</section>
</main>
<div class="espaco_home"></div>
<footer class="rodape">Desenvolvido por Marcelo.
</footer>
<footer class="rodape"> <a href=https://www.inova.ma.gov.br> <img class="rodapeimg_inova" src="./assets/inovalogo.png" alt="logo Inova"></a>
<a href="https://www.alura.com.br/"><img class="rodapeimg_alura" src="./assets/aluralogo.png" alt="logo Alura"></a>
</footer>
</body>
</html>