-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
45 lines (41 loc) · 2.15 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<!-- Tags usadas para obter as dimensões do dispositivo -->
<meta name="viewport" content="user-scalable=no, width=device-width, initial-scale=1.0" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<title>Gabriel´s Mind</title>
<link rel="shortcut icon" href="assets/icon.ico"/>
<script src="javascript/utilities.js"></script>
<link rel="stylesheet" type="text/css" href="css/global.css">
<link rel="stylesheet" type="text/css" href="css/index.css">
</head>
<body>
<nav id="navbar" class="dark-navbar">
<a href="index.html" id="page-name" class="white">Gabriel's Mind</a>
<div class="horizontal center">
<a href="index.html" id="button-1" class="header-link dark-header-link white">HOME</a>
<a href="html/contato.html" id="button-2" class="header-link dark-header-link white">CONTACT</a>
<a href="html/ferramentas.html" id="button-3" class="header-link dark-header-link white">TOOLS</a>
</div>
<img id="change-mode" src="assets/LightMode.png" onclick="changeMode()">
</nav>
<div id="page-body" class="vertical center black-background">
<div id="introduction">
<h1 class="red">Hi, my name is Gabriel Ferracioli</h1>
<text id="intro" class="white">
Systems analyst with 2 years of experience in software development, having worked in a data science team, I am seeking a
career transition to a software engineering position, preferably using Spring or .NET. Despite having only 6 months of
experience with Java, have strong knowledge of OOP and data structures, along with a strong desire to learn new concepts
and problem-solving skill.
</text>
</div>
<div id="career">
<!-- Imprime o conteúdo de data.js -->
<script type="module" src="javascript/index.js"></script>
</div>
<div id="footer" class="horizontal center black-background"><text class="white">Built by <a style="text-decoration: none;" class="white" href="https://www.linkedin.com/in/gabrielferracioli/">Gabriel Ferracioli</a></text></div>
</div>
</body>
</html>