-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
350 lines (291 loc) · 16.3 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
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<title>Portfólio | Matheus Oliveira</title>
<link rel="preconnect" href="https://fonts.gstatic.com">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Fira+Code:wght@300;500&family=Press+Start+2P&display=swap" >
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="css/components/main-header.css">
<link rel="stylesheet" href="css/components/main-avatar.css">
<link rel="stylesheet" href="css/components/main-navigation.css">
<link rel="stylesheet" href="css/components/menu-action.css">
<link rel="stylesheet" href="css/components/main-button.css">
<link rel="stylesheet" href="css/components/main-banner.css">
<link rel="stylesheet" href="css/components/main-box.css">
<link rel="stylesheet" href="css/components/main-title.css">
<link rel="stylesheet" href="css/components/main-subtitle.css">
<link rel="stylesheet" href="css/components/main-section.css">
<link rel="stylesheet" href="css/components/progress-bar.css">
<link rel="stylesheet" href="css/components/skill-tech.css">
<link rel="stylesheet" href="css/components/wrapper-skill.css">
<link rel="stylesheet" href="css/components/wrapper-project.css">
<link rel="stylesheet" href="css/components/logo-project.css">
<link rel="stylesheet" href="css/components/main-carousel.css">
<link rel="stylesheet" href="css/components/main-text.css">
<link rel="stylesheet" href="css/components/wrapper-carousel.css">
<link rel="stylesheet" href="css/components/carousel-img.css">
<link rel="stylesheet" href="css/components/main-arrow.css">
<link rel="stylesheet" href="css/components/main-form.css">
<link rel="stylesheet" href="css/components/form-label.css">
<link rel="stylesheet" href="css/components/form-input.css">
<link rel="stylesheet" href="css/components/main-footer.css">
</head>
<body>
<header class="main-header">
<a href="#">
<img class="main-avatar" src="assets/img/avatar.jpg" alt="Avatar do Aphelios">
</a>
<nav class="main-navigation">
<a class="menu-action" href="#skills" lang="en">Skills</a>
<a class="menu-action" href="#projetos">Projetos</a>
<a class="menu-action" href="#sobre">Sobre</a>
<a class="menu-action" href="#contatos">Contatos</a>
<a class="main-button" href="assets/img/cv.jpeg" download="cv" lang="en">Download CV</a>
</nav>
</header>
<section class="main-banner">
<div class="wrapper">
<div class="main-box">
<h1 class="main-title">Matheus Oliveira</h1>
<h2 class="main-subtitle">WebDev Student</h2>
</div>
<div class="navigation">
<a class="main-button" href="assets/img/cv.jpeg" download="cv" lang="en">Download CV</a>
<a class="main-button" href="#contatos">Contatos</a>
</div>
</div>
</section>
<section id="skills" class="main-section -first">
<h1 class="main-title">Skills</h1>
<div class="wrapper-skill">
<article class="skill-tech">
<img class="icon" src="assets/img/ico_html5.png" alt="HTML5">
<div class="wrapper">
<h2 class="main-subtitle">HTML</h2>
<progress class="progress-bar" max="100" value="75"></progress>
</div>
</article>
<article class="skill-tech">
<img class="icon" src="assets/img/ico_css3.png" alt="CSS3">
<div class="wrapper">
<h2 class="main-subtitle">CSS</h2>
<progress class="progress-bar" max="100" value="75"></progress>
</div>
</article>
<article class="skill-tech">
<img class="icon" src="assets/img/ico_js.png" alt="JavaScript">
<div class="wrapper">
<h2 class="main-subtitle">JavaScript</h2>
<progress class="progress-bar" max="100" value="50"></progress>
</div>
</article>
<article class="skill-tech">
<img class="icon" src="assets/img/ico_react.png" alt="React">
<div class="wrapper">
<h2 class="main-subtitle">React</h2>
<progress class="progress-bar" max="100" value="20"></progress>
</div>
</article>
<article class="skill-tech">
<img class="icon" src="assets/img/ico_nodejs.png" alt="NodeJS">
<div class="wrapper">
<h2 class="main-subtitle">NodeJS</h2>
<progress class="progress-bar" max="100" value="10"></progress>
</div>
</article>
<article class="skill-tech">
<img class="icon" src="assets/img/ico_tdd.png" alt="TDD">
<div class="wrapper">
<h2 class="main-subtitle">TDD</h2>
<progress class="progress-bar" max="100" value="10"></progress>
</div>
</article>
<article class="skill-tech">
<img class="icon" src="assets/img/ico_restapi.png" alt="Rest API">
<div class="wrapper">
<h2 class="main-subtitle">Rest API</h2>
<progress class="progress-bar" max="100" value="10"></progress>
</div>
</article>
<article class="skill-tech">
<img class="icon" src="assets/img/ico_ux.png" alt="UX">
<div class="wrapper">
<h2 class="main-subtitle">UX</h2>
<progress class="progress-bar" max="100" value="40"></progress>
</div>
</article>
</div>
</section>
<section id="projetos" class="main-section -third">
<h1 class="main-title">Projetos</h1>
<div class="wrapper-project">
<a class="logo-project" href="https://www.firedlabs.com" target="_blank">
<img class="icon" src="assets/img/logo-firedlabs.svg" alt="Logo FiredLabs">
</a>
<a class="logo-project" href="https://www.collabcode.training" target="_blank">
<img class="icon" src="assets/img/logo-collabcode.png" alt="Logo CollabCode">
</a>
<a class="logo-project" href="https://araggohnxd.github.io/curso-html-css-feliz/">
<img class="icon" src="assets/img/avatar.jpg" alt="Avatar Portfólio">
</a>
</div>
</section>
<section id="sobre" class="main-section -second">
<h1 class="main-title">Sobre</h1>
<article class="main-carousel">
<div class="wrapperCarousel">
<div class="scroller">
<figure class="wrapper">
<figcaption class="main-subtitle">2012</figcaption>
<div class="carousel-img -nofit">
<img class="icon" src="assets/img/logo-locaweb.png" alt="Logo da LocaWeb">
</div>
</figure>
<figure class="wrapper">
<figcaption class="main-subtitle">2014</figcaption>
<div class="carousel-img -fit">
<img class="icon" src="assets/img/logo-caelum.png" alt="Logo da Caelum">
</div>
</figure>
<figure class="wrapper">
<figcaption class="main-subtitle">2016</figcaption>
<div class="carousel-img -nofit">
<img class="icon" src="assets/img/logo-getninjas.png" alt="Logo da GetNinjas">
</div>
</figure>
<figure class="wrapper">
<figcaption class="main-subtitle">2017</figcaption>
<div class="carousel-img -fit">
<img class="icon" src="assets/img/logo-caelum.png" alt="Logo da Caelum">
</div>
</figure>
<figure class="wrapper">
<figcaption class="main-subtitle">2018</figcaption>
<div class="carousel-img -nofit">
<img class="icon" src="assets/img/logo-impulso.png" alt="Logo da Impulso">
</div>
</figure>
<figure class="wrapper">
<figcaption class="main-subtitle">2019</figcaption>
<div class="carousel-img -nofit">
<img class="icon" src="assets/img/logo-collabcode.png" alt="Logo da CollabCode">
</div>
</figure>
<figure class="wrapper">
<figcaption class="main-subtitle">2012</figcaption>
<div class="carousel-img -nofit">
<img class="icon" src="assets/img/logo-locaweb.png" alt="Logo da LocaWeb">
</div>
</figure>
<figure class="wrapper">
<figcaption class="main-subtitle">2014</figcaption>
<div class="carousel-img -fit">
<img class="icon" src="assets/img/logo-caelum.png" alt="Logo da Caelum">
</div>
</figure>
<figure class="wrapper">
<figcaption class="main-subtitle">2016</figcaption>
<div class="carousel-img -nofit">
<img class="icon" src="assets/img/logo-getninjas.png" alt="Logo da GetNinjas">
</div>
</figure>
<figure class="wrapper">
<figcaption class="main-subtitle">2017</figcaption>
<div class="carousel-img -fit">
<img class="icon" src="assets/img/logo-caelum.png" alt="Logo da Caelum">
</div>
</figure>
<figure class="wrapper">
<figcaption class="main-subtitle">2018</figcaption>
<div class="carousel-img -nofit">
<img class="icon" src="assets/img/logo-impulso.png" alt="Logo da Impulso">
</div>
</figure>
<figure class="wrapper">
<figcaption class="main-subtitle">2019</figcaption>
<div class="carousel-img -nofit">
<img class="icon" src="assets/img/logo-collabcode.png" alt="Logo da CollabCode">
</div>
</figure>
<figure class="wrapper">
<figcaption class="main-subtitle">2012</figcaption>
<div class="carousel-img -nofit">
<img class="icon" src="assets/img/logo-locaweb.png" alt="Logo da LocaWeb">
</div>
</figure>
<figure class="wrapper">
<figcaption class="main-subtitle">2014</figcaption>
<div class="carousel-img -fit">
<img class="icon" src="assets/img/logo-caelum.png" alt="Logo da Caelum">
</div>
</figure>
<figure class="wrapper">
<figcaption class="main-subtitle">2016</figcaption>
<div class="carousel-img -nofit">
<img class="icon" src="assets/img/logo-getninjas.png" alt="Logo da GetNinjas">
</div>
</figure>
<figure class="wrapper">
<figcaption class="main-subtitle">2017</figcaption>
<div class="carousel-img -fit">
<img class="icon" src="assets/img/logo-caelum.png" alt="Logo da Caelum">
</div>
</figure>
<figure class="wrapper">
<figcaption class="main-subtitle">2018</figcaption>
<div class="carousel-img -nofit">
<img class="icon" src="assets/img/logo-impulso.png" alt="Logo da Impulso">
</div>
</figure>
<figure class="wrapper">
<figcaption class="main-subtitle">2019</figcaption>
<div class="carousel-img -nofit">
<img class="icon" src="assets/img/logo-collabcode.png" alt="Logo da CollabCode">
</div>
</figure>
</div>
<div class="main-arrow -left">
<div class="arrow-direction -left"></div>
</div>
<div class="main-arrow -right">
<div class="arrow-direction -right"></div>
</div>
</article>
</div>
<p class="main-text">
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Viverra ipsum nunc aliquet bibendum enim facilisis. Viverra maecenas accumsan lacus vel facilisis. Adipiscing elit ut aliquam purus sit amet luctus venenatis lectus. Cursus sit amet dictum sit amet. Condimentum id venenatis a condimentum vitae sapien pellentesque habitant morbi. Neque volutpat ac tincidunt vitae semper quis lectus nulla at. Pellentesque massa placerat duis ultricies lacus sed. At risus viverra adipiscing at in tellus integer feugiat scelerisque. Mattis ullamcorper velit sed ullamcorper morbi tincidunt ornare massa. Lacus sed viverra tellus in hac habitasse platea dictumst. Dolor sit amet consectetur adipiscing elit ut aliquam purus. Porttitor lacus luctus accumsan tortor posuere ac. Fermentum posuere urna nec tincidunt.
</p>
</section>
<section id="contatos" class="main-section -first -noborder">
<h1 class="main-title">Contatos</h1>
<form action="" class="main-form">
<div class="wrapper">
<label class="form-label" for="name">Nome</label>
<input class="form-input" type="text" name="name" id="name" placeholder="Ex: Franklin Roosevelt" spellcheck="false" required>
</div>
<div class="wrapper">
<label class="form-label" for="Email">Email</label>
<input class="form-input" type="email" name="email" id="email" placeholder="Ex: [email protected]" spellcheck="false" required>
</div>
<div class="wrapper">
<label class="form-label" for="message">Mensagem</label>
<textarea class="form-input -message" name="message" id="message" placeholder="Seu site é incrível *_*" spellcheck="true" required></textarea>
</div>
<input class="main-button -form" type="submit" value="Enviar">
</form>
</section>
<footer class="main-footer">
<a href="https://twitter.com/marcobrunobr" target="_blank">
<img class="icon" src="assets/img/twitter.png" alt="Logo do Twitter">
</a>
<a href="https://www.youtube.com/watch?v=Hg9uDsSKu8c" target="_blank">
<img class="icon" src="assets/img/youtube.png" alt="Logo do YouTube">
</a>
<a href="https://discord.gg/VmYQw9cMYm" target="_blank">
<img class="icon" src="assets/img/discord.png" alt="Logo do Discord">
</a>
</footer>
<script src="js/components/main-carousel.js"></script>
</body>
</html>