-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathabout.html
More file actions
80 lines (74 loc) · 3.15 KB
/
about.html
File metadata and controls
80 lines (74 loc) · 3.15 KB
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
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" href="./public/assets/images/logo.svg" type="image/x-icon">
<link href="https://fonts.googleapis.com/css2?family=Archivo:wght@400;700&family=Poppins:wght@400;700&display=swap"
rel="stylesheet">
<link rel="stylesheet" href="./public/styles/styles.css">
<title>Rafael Fachinelli | Full Stack Developer</title>
</head>
<body>
<nav id="menu">
<div class="menu__content">
<div class="menu__social">
<a class="social__link" href="https://github.com/rafaelfachinelli" target="_blank">
<img src="./public/assets/icons/github.svg" alt="GitHub">
</a>
<a class="social__link" href="https://www.linkedin.com/in/rafaelfachinelli/?locale=en_US" target="_blank">
<img src="./public/assets/icons/linkedin.svg" alt="LinkedIn">
</a>
<a class="social__link" href="mailto:rafael.fachinelli@fatec.sp.gov.br" target="_blank">
<img src="./public/assets/icons/email.svg" alt="E-mail">
</a>
</div>
<div class="menu_page">
<a class="page__link page__link--menu" href="./index.html">projects</a>
<a class="page__link page__link--menu" href="./about.html">about</a>
</div>
<div class="menu__logo">
<a class="page__link page__link--logo" href="./index.html">
<img src="./public/assets/images/logo.svg" alt="Rafael Fachinelli Logo">
</a>
</div>
</div>
<div class="menu__border"></div>
</nav>
<header id="header">
<div class="header__me">
<h1 class="me__name">Rafael Fachinelli</h1>
<a class="page__link page__link--header" href="./index.html">My Projects</a>
</div>
</header>
<main id="main">
<div class="main__about">
<h1 class="about__title">ABOUT RAFAEL FACHINELLI</h1>
<p class="about__text">
I'm beginner in web development studing the most powerfull languages like
JavaScript, HTML5, CSS3 and productive frameworks to develop web systems
with React, Node.js and React Native.
</br></br>
Representant of class in my college, working in group to solve problems
and give solutions for best classes. I love to study all about tecnologie,
but I choose the web development because I feel very nice when I see
people reactions about the very nice solutions developed by me.
</br></br>
A person really focused to learn and hear all feedbacks to improve my
skills and make environments very greats to work. To check this, see my
github map and note the commits I have when started studie this world of
web development.
</br></br>
If your enterprise need a person with leadership mind, working in group,
respect and seriousness, please touch in contact with me.
</p>
</div>
</main>
<footer class="footer">
<div class="footer__content">
© 2020 Rafael Fachinelli
<img class="footer__logo" src="./public/assets/images/logo.svg" alt="Rafael Fachinelli Logo">
</div>
</footer>
</body>
</html>