-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
107 lines (105 loc) · 3.93 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
<!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">
<title>Meu Currículo - Alexander Ferreira</title>
<script>
document.documentElement.classList += 'js';
</script>
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Bree+Serif&display=swap" rel="stylesheet">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet">
<link href="https://stackpath.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css" rel="stylesheet">
<link href="./css/style.css" rel="stylesheet">
</head>
<body>
<main id="main">
<section class="bg"></section>
<section class="profile">
<img src="./img/profile.png" alt="Alexander Ferreira">
<span class="border"></span>
<p>
<strong>Alexander Ferreira</strong>
</p>
<div class="contact">
<p>
<i class="fa fa-whatsapp"></i> (51) 99650-2085
</p>
<p>
<i class="fa fa-envelope"></i> [email protected]
</p>
</div>
<div class="buttons">
<a href="#" class="btn btn-on" data-id="description">
Sobre
</a>
<a href="#" class="btn btn-projects" data-id="projects">
Projetos
</a>
</div>
<div class="sociais">
<a href="https://www.linkedin.com/in/alex-ferreira1796/" target="_blank">
<i class="fa fa-linkedin"></i>
</a>
<a href="https://github.com/alexferreira1796" target="_blank">
<i class="fa fa-github"></i>
</a>
<a href="https://www.instagram.com/alexferreiranw/" target="_blank">
<i class="fa fa-instagram"></i>
</a>
</div>
</section>
<section class="content active" id="description">
<div>
<div class="container">
<div class="row">
<div class="col-sm-12">
<h1>
Olá,
</h1>
<h2>Bem vindo ao meu currículo</h2>
<p>
Meu nome é Alexander, tenho 24 anos. Comecei a estudar desenvolvimento web com 16 anos. HTML, CSS e JavaScript, tive dificuldade no início pois faltava lógica de programação, foi quando comecei o curso técnico de informática em 2016.<br>Em pouco tempo já estava fazendo alguns trabalhos para amigos e empresas como freelancer.
</p>
</div>
</div>
</div>
</div>
</section>
<section class="content" id="projects">
<div>
<div class="container">
<div class="row">
<div class="col-sm-12">
<h1>
Projetos
</h1>
<h2>Alguns projetos que desenvolvi.</h2>
<div class="jobs">
<a href="https://rafaelnascimento.website/d5spocket" target="_blank" class="js-anime">
<i class="fa fa-arrow-right"></i> D5S Pocket - LP de vendas
</a>
<a href="http://mottinfavero.com.br/" target="_blank" class="js-anime">
<i class="fa fa-arrow-right"></i> Mottin Favero Arquitetura Inteligente - Site Institucional
</a>
<a href="https://zarq.com.br/" target="_blank" class="js-anime">
<i class="fa fa-arrow-right"></i> Zarq Arquitetura - Site Institucional
</a>
<a href="https://www.hubdeeventoscdlcaxias.com.br/" target="_blank" class="js-anime">
<i class="fa fa-arrow-right"></i> HUB de Eventos CDL Caxias - Site Institucional
</a>
</div>
</div>
</div>
</div>
</div>
</section>
</main>
<footer>
<p>2021 - Todos os direitos reservados</p>
</footer>
<script src="./js/script.js"></script>
</body>
</html>