-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
57 lines (54 loc) · 2.5 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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/header.css">
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="css/footer.css">
<script src="https://kit.fontawesome.com/34289682d8.js" crossorigin="anonymous"></script>
<title>Portifólio</title>
</head>
<body>
<header class="cabecalho">
<nav class="cabecalho__menu">
<ul class="cabecalho__menu__links">
<li class="cabecalho__menu__links__item">
<a class="cabecalho__menu__links__item__link link__destaque" href="#">Home</a>
</li>
<li class="cabecalho__menu__links__item">
<a class="cabecalho__menu__links__item__link" href="sobre-mim.html">Sobre mim</a>
</li>
</ul>
</nav>
</header>
<main class="apresentacao">
<section class="apresentacao__conteudo">
<h1 class="apresentacao__conteudo__titulo">Eleve seu negócio digital a outro nível
<strong class="apresentacao__conteudo__titulo__highlight">com um Front-end e Back-end de qualidade</strong>
</h1>
<p class="apresentacao__conteudo__texto">
Olá! Sou Rui Nascimento, desenvolvedor Back-End e Front-end com especialidade em Java, Spring Boot, Spring
MVC, MySQL, HTML, CSS e JS.
Soluciono problemas. Que tal conversarmos?
</p>
<div class="apresentacao__conteudo__links">
<h2 class="apresentacao__conteudo__links__subtitulo">Acesse minhas redes sociais:</h2>
<a class="apresentacao__conteudo__links__link" href="https://www.linkedin.com/in/sruinascimento/" target="_blank">
<i class="fa-brands fa-linkedin"></i>
Linkedin
</a>
<a class="apresentacao__conteudo__links__link" href="https://github.com/sruinascimento" target="_blank">
<i class="fa-brands fa-github"></i>
Github
</a>
</div>
</section>
<img class="apresentacao__avatar" src="img/foto-perfil.jpeg" alt="Foto de um homem de cor parda e com barba">
</main>
<footer class="rodape">
<p class="rodape__desenvolvedor">Desenvolvido por @sruinascimento</p>
</footer>
</body>
</html>