-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
239 lines (204 loc) · 7.09 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
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>Front-end Gabu</title>
<link rel="stylesheet" href="css/style.css" />
</head>
<body>
<header class="flex container">
<a href="#intro"><h3 class="logo">Gabriel Antiqueira</h3></a>
<div class="menu-toggle" id="menu-toggle">
<span></span>
<span></span>
<span></span>
</div>
<nav class="menu flex">
<a class="h4 dark" href="/">Home</a>
<a class="h4 dark" href="#works">My Works</a>
<a class="h4 dark" href="#skills">Skills</a>
<a class="h4 dark" href="#formation">Formation</a>
<a class="h4 dark" href="#about">About me</a>
</nav>
</header>
<section class="home flex container" id="home">
<div class="img-wrapper">
<img />
</div>
<div class="intro">
<h3 class="gray">
Hello!<br />
My name is Gabriel Antiqueira,<br />
a Front-End Developer.
</h3>
<div class="social">
<a class="fab fa-linkedin-in"></a>
<a class="fab fa-github-square"></a>
<a class="fab fa-whatsapp-square"></a>
<a class="fas fa-envelope-square"></a>
</div>
</div>
<div class="stack">
<h3 class="bold gray">Stack</h3>
<h4 class="gray">HTML5 / CSS4</h4>
<h4 class="gray">SASS</h4>
<h4 class="gray">Javascript</h4>
<h4 class="gray">Bootstrap 3 / 4</h4>
<h4 class="gray">Jquery</h4>
</div>
</section>
<section class="works flex container" id="works">
<div class="project">
<div class="img-wrapper"></div>
<h3 class="gray bold">Title</h3>
<p class="gray">
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec nec
mattis ligula.
</p>
<button class="btn-black">See more</button>
</div>
<div class="project">
<div class="img-wrapper"></div>
<h3 class="gray bold">Title</h3>
<p class="gray">
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec nec
mattis ligula.
</p>
<button class="btn-black">See more</button>
</div>
<div class="project">
<div class="img-wrapper"></div>
<h3 class="gray bold">Title</h3>
<p class="gray">
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec nec
mattis ligula.
</p>
<button class="btn-black">See more</button>
</div>
</section>
<section class="knowledge flex container" id="skills">
<div class="text">
<h4 class="gray">
I’m Gabriel Antiqueira, a student of web development and applications since April 2018. <br />
<br />
I like to learn new things, so I keep studying actively. A fan of innovations and technologies, I want to learn how to develop new applications or system projects.
</h4>
</div>
<div class="skills flex">
<h3 class="gray bold">Knowledge</h3>
<div class="flex flex-wrapper">
<p class="gray">HTML5 / CSS4</p>
<p class="gray">SASS</p>
<p class="gray">Javascript</p>
<p class="gray">Jquery</p>
<p class="gray">Bootstrap</p>
<p class="gray">Figma</p>
<p class="gray">Photoshop</p>
<p class="gray">Basic React</p>
<p class="gray">Node.js</p>
<p class="gray">Gulp</p>
<p class="gray">NPM / Yarn</p>
<p class="gray">Basic PHP</p>
<p class="gray">Scrum</p>
<p class="gray">Kanban</p>
</div>
</div>
</section>
<section class="timeline container flex" id="formation">
<div class="flex-wrapper">
<h2 class="bold gray">Timeline</h3>
<div>
<h3 class="bold gray">Formation</h3>
<ul class="ul-styled">
<li class="p1 gray">
Bachelor in Computer Science - Faculdade Anhanguera de Bauru | Conclusion in 08/2022
</li>
<li class="p1 gray">
Building Technical - SENAI João Martins Coube | Conclusion in Dez/2016
</li>
</ul>
</div>
<div>
<h3 class="bold gray">Experiences</h3>
<ul class="ul-styled">
<li class="p1 gray">
Trainee - Revelare | Technology Agency - Since Dec/2018
</li>
</ul>
</div>
<div>
<h3 class="bold gray">Courses</h3>
<ul class="ul-styled">
<li class="p1 gray">
Bootcamp of React/RN/Node.js - RocketSeat | since Feb/2019
</li>
<li class="p1 gray">
Danki Code | Danki Code - Conclusion in Dez/2018
</li>
<li class="p1 gray">
Udemy - Udemy | Conclusion in Dez/2018
</li>
</ul>
</div>
</div>
</section>
<section class="about flex container" id="about">
<div class="flex-wrapper">
<h2 class="gray bold">About me</h2>
<h3 class="gray bold">Hobbies</h3>
<div class="hobbies flex">
<p class="gray">Papercraft</p>
<p class="gray">Origami</p>
<p class="gray">Play guitar</p>
<p class="gray">Learn something new</p>
<p class="gray">Play games</p>
<p class="gray">Play chess</p>
<p class="gray">Read books/mangas</p>
<p class="gray">Watch animes</p>
</div>
<h3 class="gray bold">Interests</h3>
<div class="interests flex">
<p class="gray">Technology</p>
<p class="gray">Psychology</p>
<p class="gray">Inovation</p>
<p class="gray">Discipline</p>
<p class="gray">Learning</p>
<p class="gray">Events / Conferences</p>
<p class="gray">Empathy</p>
<p class="gray">Music</p>
</div>
<h3 class="gray bold">Qualities</h3>
<div class="qualities flex">
<p class="gray">Independent</p>
<p class="gray">Prudent</p>
<p class="gray">Visionary</p>
<p class="gray">Empathic</p>
</div>
<h3 class="gray bold">To improve</h3>
<div class="qualities flex">
<p class="gray">Introvert</p>
<p class="gray">Discontented</p>
<p class="gray">Anxious</p>
<p class="gray">?</p>
</div>
</div>
</section>
<footer class="flex container">
<h2>Come to talk :)</h2>
<div class="social">
<a class="fab fa-linkedin-in"></a>
<a class="fab fa-github-square"></a>
<a class="fab fa-whatsapp-square"></a>
<a class="fas fa-envelope-square"></a>
</div>
</footer>
<script
src="https://code.jquery.com/jquery-3.3.1.min.js"
integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8="
crossorigin="anonymous"
></script>
<script src="js/main.js"></script>
</body>
</html>