-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
424 lines (377 loc) · 14.1 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
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Natalia Portfolio</title>
<!--fonts-->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Baloo+Chettan+2&family=Mochiy+Pop+P+One&display=swap"
rel="stylesheet"
/>
<!--fav icon-->
<link rel="icon" href="" />
<!--reset css-->
<link rel="stylesheet" href="/assets/css/reset.css" />
<!--tailwind-->
<link
href="https://unpkg.com/tailwindcss@^1.0/dist/tailwind.min.css"
rel="stylesheet"
/>
<!--css-->
<link rel="stylesheet" type="text/css" href="/assets/css/main.css" />
<!--header css-->
<link
rel="stylesheet"
type="text/css"
href="/assets/css/header/header.css"
/>
<!--conteudo css-->
<link
rel="stylesheet"
type="text/css"
href="/assets/css/content/content.css"
/>
<!--icons-->
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/boxicons@latest/css/boxicons.min.css"
/>
</head>
<body>
<!--navbar-->
<nav class="flex justify-between px-20 py-10 items-center w-full">
<h1 class="text-xl text-orange-500 font-bold">
Natalia Carvalho
</h1>
<div class="flex items-center">
<ul class="flex items-center space-x-4">
<li class="font-semibold text-orange-700 hover:text-orange-500">
<a href="#about">Sobre mim</a>
</li>
<li class="font-semibold text-orange-700 hover:text-orange-500">
<a href="#skills">Skills</a>
</li>
<li class="font-semibold text-orange-700 hover:text-orange-500">
<a href="#hobbies">Hobbies</a>
</li>
<li class="font-semibold text-orange-700 hover:text-orange-500">
<a href="#projects">Projetos</a>
</li>
<li class="font-semibold text-orange-700 hover:text-orange-500">
<a href="#contact">Contato</a>
</li>
</ul>
</div>
</nav>
<!--header-->
<header class="header">
<div class="flex flex-col lg:grid lg:grid-cols-2">
<h3 class="header__title">
Olá! Me chamo Natalia! Sou
<span class="header__animation"> desenvolvedora front-end</span>
</h3>
<img
class="header__image"
src="https://media.licdn.com/dms/image/D4D03AQElqAwUmu1WNw/profile-displayphoto-shrink_800_800/0/1676508361621?e=1683763200&v=beta&t=BR9EUdeALVB-ZIu7ABS-7Iobd4mdfZvEESl8v0AGYoM"
alt="Minha imagem"
/>
<p class="header__text">
Oi! Tenho 27 anos e gosto muito de tecnologia! Trabalho como
Ilustradora freelance e, ao mesmo tempo, estudo sobre desenvolvimento
front-end.
</p>
<div class="mx-15">
<ul class="flex flex-wrap justify-center space-x-8 space-y-5 m-10">
<li class="text-base leading-6 my-5">
<a href="https://github.com/natulims" target="_blank">
<i class="bx bxs-chevron-right"></i> Github</a
>
</li>
<li class="text-base leading-6 my-5">
<a href="https://linkedin.com/in/nxtxlixlc/" target="_blank">
<i class="bx bxs-chevron-right"></i> Linkedin</a
>
</li>
<li class="text-base leading-6 my-5">
<a href="https://instagram.com/natulims/" target="_blank">
<i class="bx bxs-chevron-right"></i> Instagram</a
>
</li>
<li class="text-base leading-6 my-5">
<a href="https://ko-fi.com/natulims" target="_blank">
<i class="bx bxs-chevron-right"></i> Ko-fi</a
>
</li>
</ul>
</div>
</div>
</header>
<!--content-->
<main class="main" id="about">
<h3 class="main__title">Sobre mim</h3>
<!--sobre mim-->
<div class="bg-orange-300">
<p class="main__text">
Me chamo Natalia! Tenho 27 anos, sou de São Paulo, mas atualmente moro
no Rio de Janeiro. Sou ilustradora e designer há 4 anos e decidi
aprender sobre desenvolvimento web. Gosto muito de criar layouts,
personagens e estou sempre em busca de aprender coisas novas para
melhorar minhas habilidades. Já atuei desde a criação de mascotes para
marcas até com criação de personagens para jogos. E agora estou
criando meus próprios websites. Gosto de poder compartilhar tudo o que
faço com todo mundo e explorar coisas que não imaginava que seriam do
meu interesse antigamente!
</p>
</div>
</main>
<!--skills-->
<section class="skills" id="skills">
<h4 class="skills__title">Skills</h4>
<div class="flex flex-col lg:flex-row space-x-7 justify-center">
<!--html-->
<div class="skills__info">
<p class="skills__icon"><i class="bx bxl-html5"></i></p>
<span class="skills__title">HTML 5</span>
</div>
<!--javascript-->
<div class="skills__info">
<p class="skills__icon"><i class="bx bxl-javascript"></i></p>
<span class="skills__title">Javascript</span>
</div>
<!--tailwind-->
<div class="skills__info">
<p class="skills__icon"><i class="bx bxl-tailwind-css"></i></p>
<span class="skills__title">Tailwind</span>
</div>
<!--react-->
<div class="skills__info">
<p class="skills__icon"><i class="bx bxl-react"></i></p>
<span class="skills__title">React</span>
</div>
<!--css-->
<div class="skills__info">
<p class="skills__icon"><i class="bx bxl-css3"></i></p>
<span class="skills__title">CSS</span>
</div>
</div>
</section>
<!--hobbies-->
<section class="hobbies" id="hobbies">
<h4 class="hobbies__title">Hobbies</h4>
<div class="flex flex-col lg:flex-row space-x-7 justify-center">
<div class="hobbies__info">
<p class="hobbies__icon"><i class="bx bxs-color-fill"></i></p>
<span class="hobbies__tittle">Desenhar</span>
</div>
<div class="hobbies__info">
<p class="hobbies__icon"><i class="bx bxs-music"></i></p>
<span class="hobbies__tittle">Ouvir música</span>
</div>
<div class="hobbies__info">
<p class="hobbies__icon"><i class="bx bxs-joystick"></i></p>
<span class="hobbies__tittle">Jogar</span>
</div>
<div class="hobbies__info">
<p class="hobbies__icon"><i class="bx bxs-baguette"></i></p>
<span class="hobbies__tittle">Cozinhar</span>
</div>
<div class="hobbies__info">
<p class="hobbies__icon"><i class="bx bx-tv"></i></p>
<span class="hobbies__tittle">Assistir filme</span>
</div>
</div>
</section>
<!--projetos-->
<section class="projects" id="projects">
<h4 class="projects__title">Projetos</h4>
<div class="grid grid-cols-auto w-full">
<div class="projects__image">
<img
src="https://natulims.github.io/Portfolio/assets/imgs/project2.png"
alt=""
srcset=""
/>
</div>
<div class="flex flex-col flex-wrap">
<div class="projects__text">Codificador de Texto</div>
<div class="projects__info">
Challenge Alura
<div class="projects__buttons">
<button
class="bg-orange-300 border-solid border-orange-300 hover:text-orange-900 py-3 px-5 font-medium text-center text-orange-900 rounded-lg bg-primary-700 sm:w-fit"
>
<a
href="https://github.com/natulims/CodificadorDeTexto"
target="_blank"
>Repositório</a
>
</button>
<button
class="border-solid border-orange-500 hover:text-orange-500 hover:border-orange-900 py-3 px-5 font-medium text-center text-orange-900 rounded-lg bg-primary-700 sm:w-fit"
>
<a
href="https://natulims.github.io/CodificadorDeTexto/"
target="_blank"
>Ver demo</a
>
</button>
</div>
</div>
</div>
<div class="projects__image">
<img
src="https://natulims.github.io/Portfolio/assets/imgs/project1.png"
alt=""
srcset=""
/>
</div>
<div class="flex flex-col flex-wrap my-7 mx-10">
<div class="projects__text">Tattoo da Natu</div>
<div class="projects__info">
Projeto do Programadores Cariocas
<div class="projects__buttons">
<button
class="bg-orange-300 border-solid border-orange-300 hover:text-orange-900 py-3 px-5 font-medium text-center text-orange-900 rounded-lg bg-primary-700 sm:w-fit"
>
<a
href="https://github.com/natulims/ProjetoModulo3"
target="_blank"
>Repositório</a
>
</button>
<button
class="border-solid border-orange-500 hover:text-orange-500 hover:border-orange-900 py-3 px-5 font-medium text-center text-orange-900 rounded-lg bg-primary-700 sm:w-fit"
>
<a href="http://tattoodanatu.netlify.app/" target="_blank"
>Ver demo</a
>
</button>
</div>
</div>
</div>
<div class="projects__image">
<img
src="https://64.media.tumblr.com/342f531c3a9225ffda72205753c67bfd/c3e7587892d584a7-22/s1280x1920/83161cda9c7057ec5ba299f2f9a519e508ff049f.pnj"
alt=""
srcset=""
/>
</div>
<div class="flex flex-col flex-wrap">
<div class="projects__text">Anikaze</div>
<div class="projects__info">
Projeto do Programadores Cariocas
<div class="projects__buttons">
<button
class="bg-orange-300 border-solid border-orange-300 hover:text-orange-900 py-3 px-5 font-medium text-center text-orange-900 rounded-lg bg-primary-700 sm:w-fit"
>
<a href="https://github.com/natulims/ProjetoM6" target="_blank"
>Repositório</a
>
</button>
<button
class="border-solid border-orange-500 hover:text-orange-500 hover:border-orange-900 py-3 px-5 font-medium text-center text-orange-900 rounded-lg bg-primary-700 sm:w-fit"
>
<a href="https://anikaze.netlify.app" target="_blank"
>Ver demo</a
>
</button>
</div>
</div>
</div>
</div>
</section>
<!--contato-->
<section class="form" id="contact">
<div class="py-8 lg:py-16 px-4 mx-auto max-w-screen-md">
<h2 class="mb-4 text-4xl tracking-tight font-extrabold text-center">
Entre em contato comigo!
</h2>
<form action="#" class="space-y-8">
<div>
<label for="name" class="block mb-2 font-medium">Nome</label>
<input
type="text"
id="name"
class="rounded-lg block w-full p-2.5 text-orange-900"
placeholder="Ex: Natalia Carvalho"
required
/>
</div>
<div>
<label for="email" class="block mb-2 font-medium">Email</label>
<input
type="email"
id="email"
class="rounded-lg block w-full p-2.5 text-orange-900"
placeholder="email@email.com"
required
/>
</div>
<div>
<label for="subject" class="block mb-2 font-medium text-orange-900"
>Assunto da mensagem</label
>
<input
type="text"
id="subject"
class="block p-3 w-full text-orange-900 rounded-lg border"
placeholder="Qual o assunto da sua mensagem?"
required
/>
</div>
<div class="sm:col-span-2">
<label for="message" class="block mb-2 font-medium"
>Sua mensagem</label
>
<textarea
id="message"
rows="6"
class="block p-2.5 w-full rounded-lg shadow-sm border text-orange-900"
placeholder="Escreva sua mensagem aqui..."
></textarea>
</div>
<button
type="submit"
class="border-solid border-orange-500 hover:text-orange-500 hover:border-orange-900 py-3 px-5 font-medium text-center text-orange-900 rounded-lg bg-primary-700 sm:w-fit"
>
Send message
</button>
</form>
</div>
</section>
<!--footer-->
<footer
class="h-[50rem] bg-orange-300 text-center text-white lg:text-left w-full"
>
<div class="p-4 text-center gap-4">
<p>Desenvolvido por Natalia Carvalho</p>
<a
class="hover:text-orange-500 text-4xl"
href="https://github.com/natulims"
target="_blank"
><i class="bx bxl-github"></i
></a>
<a
class="hover:text-orange-500 text-4xl"
href="https://www.instagram.com/natulims/"
target="_blank"
><i class="bx bxl-instagram"></i
></a>
<a
class="hover:text-orange-500 text-4xl"
href="https://www.linkedin.com/in/nxtxlixlc/"
target="_blank"
><i class="bx bxl-linkedin"></i
></a>
</div>
</footer>
<!--scripts-->
<!--jquery-->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.1/jquery.min.js"></script>
<!--main script-->
<script src="/assets/scripts/main.js"></script>
</body>
</html>