-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
148 lines (118 loc) · 4.16 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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
<!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>Desenvolve Portfolio</title>
<link rel="shortcut icon" href="/src/assets/favicon.ico" type="image/x-icon">
<!-- Styles -->
<link rel="stylesheet" href="/src/styles/reset.css">
<link rel="stylesheet" href="/src/styles/vars.css">
<link rel="stylesheet" href="/src/styles/style.css">
<link rel="stylesheet" href="/src/styles/colors.css">
<link rel="stylesheet" href="/src/styles/media-queries.css">
<!-- Icons -->
<script src="https://kit.fontawesome.com/c45cb14264.js" crossorigin="anonymous"></script>
</head>
<body>
<div class="toggle-container">
<div class="color-switch">
<div class="label-switch">
<span>on</span>
<span>off</span>
</div>
</div>
<div class="temp-div">
<div class="language-switch">
<div class="label-switch">
<span>pt</span>
<span>en</span>
</div>
</div>
<p>Coming soon⤴</p>
</div>
</div>
<header class="menu-container">
<nav class="menu-nav">
<a href="/index.html">
<span>
<i class="fa-solid fa-house"></i>
</span>
<span>
Home
</span>
</a>
<a href="/about.html">
<span>
<i class="fa-solid fa-address-card"></i>
</span>
<span>
Sobre mim
</span>
</a>
<a href="/resume.html">
<span>
<i class="fa-solid fa-network-wired"></i>
</span>
<span>
Currículo
</span>
</a>
</nav>
</header>
<main class="main-container">
<section class="presentation">
<div class="pg-text-container">
<h1 class="pg-title">
Desenvolvimento Web <strong>como você nunca viu!</strong>
</h1>
<p class="pg-desc">
Olá! Sou <strong>Oliver Benites</strong>, desenvolvedor Full-Stack em treinamento, já com conhecimentos em HTML, CSS,
JavaScript e SQL. Estou aberto para comissões, colaborações, vaga júnior e voluntariado. Vamos
conversar?
</p>
</div>
<div class="pg-links">
<h2 class="pg-subtitle">
Acesse minhas redes:
</h2>
<a href="https://www.linkedin.com/in/oliverbenites/" target="_blank">
<span>
<i class="fa-brands fa-linkedin"></i>
</span>
<span>
LinkedIn
</span>
</a>
<a href="https://github.com/olwr" target="_blank">
<span>
<i class="fa-brands fa-square-github"></i>
</span>
<span>
GitHub
</span>
</a>
</div>
</section>
<div class="img-container">
<span class="img-border">
<img src="/src/assets/ft-perfil.jpg"
alt="foto do Oliver Benites (homem branco, cabelo castanho e curto, usando um óculos rosé de armação redonda e um blusão cinzas)" />
</span>
</div>
</main>
<footer class="footer-container">
<p>
<span>
<i class="fa-solid fa-terminal"></i>
</span>
<span>
Desenvolvido por Oliver Benites durante o programa Desenvolve 24
</span>
</p>
</footer>
<script src="/scripts/dark-light-mode.js"></script>
<!-- <script src="/scripts/languages.js"></script> -->
</body>
</html>