-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
66 lines (57 loc) · 2.62 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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Portfolio</title>
<link rel="stylesheet" href="./css/reset.css">
<link rel="stylesheet" href="./css/style.css">
</head>
<body>
<header class="navigation">
<nav class="navigation__menu">
<a class="menu__link" href="./index.html">Home</a>
<a class="menu__link" href="./about.html">Sobre mim</a>
</nav>
</header>
<main class="content">
<section class="container">
<div class="wrapper">
<h1 class="container_title">
Desenvolvedor <br>
<strong class="strong--tertiary-color">Front-end!</strong>
</h1>
<div class="container_content">
<p>
Olá, Sou Alexandre Coelho! Desenvolvedor Front-end e estudo Desenvolvimento Web. Minhas principais tecnologias são <strong class="strong--tertiary-color">HTML</strong>, <strong class="strong--tertiary-color">CSS</strong> e <strong class="strong--tertiary-color">JS</strong>.
</p>
<p>Almejo me tornar um <strong class="strong--tertiary-color">Desenvolvedor FullStack</strong> e atualmente estou me especializando no Front-end.</p>
</div>
</div>
<img class="main-img" src="https://github.com/coelhoalexandre.png" alt="Foto de Perfil de Alexandre Coelho no GitHub">
</section>
<section class="links">
<h2 class="links_subtitle">Acesse minhas redes:</h2>
<div class="links_container">
<a class="links_link" href="https://github.com/coelhoalexandre" target="_blank">
<img src="./assets/github.png" alt="GitHub Logo">
GitHub
</a>
<a class="links_link" href="https://www.linkedin.com/in/-coelhoalexandre/" target="_blank">
<img src="./assets/linkedin.png" alt="LinkedIn Logo">
LinkedIn
</a>
<a class="links_link" href="https://www.instagram.com/coelhoalexandre_/" target="_blank">
<img src="./assets/instagram.png" alt="Instagram Logo">
Instagram
</a>
</div>
</section>
</main>
<footer class="information">
<p>
Projeto Alura - Desenvolvido e Personalizado por Alexandre Coelho
</p>
</footer>
</body>
</html>