-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
401 lines (353 loc) · 12.3 KB
/
Copy pathindex.html
File metadata and controls
401 lines (353 loc) · 12.3 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
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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Portfólio Joyce</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Arial', sans-serif;
}
body {
background-color: #f5f7fa;
color: #333;
line-height: 1.6;
}
.container {
max-width: 800px;
margin: 0 auto;
padding: 20px;
text-align: center; /* Centraliza todo conteúdo */
}
/* CABEÇALHO ESTILIZADO */
header {
background: linear-gradient(135deg, #2c3e50 0%, #1abc9c 100%);
color: white;
padding: 30px 20px;
border-radius: 15px;
margin-bottom: 30px;
box-shadow: 0 10px 20px rgba(0,0,0,0.1);
border: 3px solid #1abc9c;
}
.foto-perfil {
width: 120px;
height: 120px;
border-radius: 50%;
object-fit: cover;
border: 5px solid white;
margin-bottom: 20px;
box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
h1 {
font-size: 2.5rem;
margin-bottom: 10px;
color: white;
}
.title {
font-size: 1.3rem;
color: #ecf0f1;
margin-bottom: 25px;
font-weight: 300;
}
.social-links {
display: flex;
justify-content: center;
gap: 20px;
margin-top: 20px;
}
.social-link {
width: 45px;
height: 45px;
border-radius: 50%;
background-color: rgba(255,255,255,0.2);
color: white;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.2rem;
transition: all 0.3s ease;
}
.social-link:hover {
background-color: white;
color: #1abc9c;
transform: scale(1.1);
}
/* SEÇÕES TEMÁTICAS */
.section {
background: white;
padding: 30px;
border-radius: 15px;
margin-bottom: 30px;
box-shadow: 0 5px 15px rgba(0,0,0,0.05);
border-left: 5px solid;
text-align: center;
}
h2 {
color: #2c3e50;
margin-bottom: 20px;
font-size: 1.8rem;
position: relative;
display: inline-block;
padding-bottom: 10px;
}
h2::after {
content: '';
position: absolute;
bottom: 0;
left: 50%;
transform: translateX(-50%);
width: 80px;
height: 3px;
background: #1abc9c;
}
/* SOBRE MIM */
.about {
border-left-color: #3498db;
}
/* PROJETOS */
.projects {
border-left-color: #9b59b6;
}
.project-card {
background: #f8f9fa;
border-radius: 10px;
padding: 20px;
margin-bottom: 20px;
border: 1px solid #e0e0e0;
transition: all 0.3s ease;
text-align: left;
}
.project-card:hover {
transform: translateY(-5px);
box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}
.project-title {
color: #2c3e50;
font-size: 1.4rem;
margin-bottom: 10px;
}
.project-description {
color: #7f8c8d;
margin-bottom: 15px;
}
.project-link {
display: inline-block;
background: linear-gradient(to right, #9b59b6, #8e44ad);
color: white;
padding: 8px 20px;
border-radius: 30px;
text-decoration: none;
font-weight: bold;
transition: all 0.3s ease;
}
.project-link:hover {
transform: translateY(-2px);
box-shadow: 0 5px 15px rgba(155,89,182,0.4);
}
/* MOTIVAÇÃO */
.motivation {
background: linear-gradient(135deg, #1abc9c 0%, #16a085 100%);
color: white;
border-left-color: #f1c40f;
}
.motivation-quote {
font-size: 1.2rem;
font-style: italic;
margin: 20px 0;
line-height: 1.8;
}
.refresh-btn {
background: white;
color: #1abc9c;
border: none;
padding: 10px 25px;
border-radius: 30px;
font-weight: bold;
cursor: pointer;
transition: all 0.3s ease;
margin-top: 10px;
}
.refresh-btn:hover {
background: #f1c40f;
color: white;
transform: scale(1.05);
}
/* CONTATO */
.contact-form {
border-left-color: #e74c3c;
}
.form-group {
margin-bottom: 20px;
text-align: left;
}
label {
display: block;
margin-bottom: 8px;
color: #2c3e50;
font-weight: bold;
}
input, textarea {
width: 100%;
padding: 12px;
border: 1px solid #ddd;
border-radius: 8px;
font-size: 1rem;
transition: all 0.3s ease;
}
input:focus, textarea:focus {
border-color: #1abc9c;
box-shadow: 0 0 0 3px rgba(26,188,156,0.2);
outline: none;
}
textarea {
height: 120px;
resize: vertical;
}
button[type="submit"] {
background: linear-gradient(to right, #e74c3c, #c0392b);
color: white;
border: none;
padding: 12px 30px;
border-radius: 30px;
font-size: 1rem;
font-weight: bold;
cursor: pointer;
transition: all 0.3s ease;
width: 100%;
}
button[type="submit"]:hover {
transform: translateY(-2px);
box-shadow: 0 5px 15px rgba(231,76,60,0.4);
}
/* RODAPÉ */
footer {
text-align: center;
color: #7f8c8d;
padding: 20px;
font-size: 0.9rem;
}
</style>
</head>
<body>
<div class="container">
<!-- CABEÇALHO -->
<header>
<img src="https://raw.githubusercontent.com/joyceetech/provadabel/76d07ccdd8335efef75e8ddd7a34ddc5039732af/joy/Capturar.PNG"
alt="Joyce Oliveira"
class="foto-perfil">
<h1>Joyce Oliveira</h1>
<p class="title">Analista Financeiro | Entusiasta de Tecnologia | Especialista em assuntos alheios </p>
<div class="social-links">
<a href="https://www.linkedin.com/in/joyce-oliveira-672b90a2/" class="social-link" target="_blank">
<i>Li</i>
</a>
<a href="https://github.com/joyceetech/" class="social-link" target="_blank">
<i>Gh</i>
</a>
<a href="mailto:joycecomyy@gmail.com" class="social-link">
<i>Em</i>
</a>
</div>
</header>
<!-- SOBRE MIM -->
<section class="section about">
<h2>Sobre Mim</h2>
<p>Formada em Análise e Desenvolvimento de Sistemas e Gestão Financeira, migrei para o mundo da tecnologia com paixão! 🚀 Atualmente participando do #EducafroTech, acredito que inovação se constrói com diversidade. ✊🏾❤️</p>
</section>
<!-- PROJETOS -->
<section class="section projects">
<h2>Meus Projetos</h2>
<!-- PROJETO 1 -->
<div class="project-card">
<h3 class="project-title">NETFLIX CLONE</h3>
<p class="project-description">
Case do Netflix feito na 1ª aula
<br><br>
<strong>Tecnologias:</strong> Python, Pandas, Matplotlib, API REST
</p>
<div style="text-align: center;">
<a href="https://joyceetech.github.io/aula1/" class="project-link" target="_blank">
Ver no GitHub
</a>
</div>
</div>
<!-- PROJETO 2 -->
<div class="project-card">
<h3 class="project-title">PORTIFÓLIO</h3>
<p class="project-description">
Case do meu sucesso
<br><br>
<strong>Tecnologias:</strong> Python, Pandas, Matplotlib, API REST
</p>
<div style="text-align: center;">
<a href="https://joyceetech.github.io/provadabel/" class="project-link" target="_blank">
Ver no GitHub
</a>
</div>
</div>
</section>
<!-- MOTIVAÇÃO -->
<section class="section motivation">
<h2>Inspiração do Dia</h2>
<p class="motivation-quote" id="motivationQuote">
"Sua limitação é só uma etapa da sua evolução!"
</p>
<button class="refresh-btn" onclick="refreshQuote()">Nova Inspiração</button>
</section>
<!-- CONTATO -->
<section class="section contact-form">
<h2>Entre em Contato</h2>
<form id="contactForm">
<div class="form-group">
<label for="name">Nome</label>
<input type="text" id="name" name="name" required>
</div>
<div class="form-group">
<label for="email">E-mail</label>
<input type="email" id="email" name="email" required>
</div>
<div class="form-group">
<label for="message">Mensagem</label>
<textarea id="message" name="message" required></textarea>
</div>
<button type="submit">Enviar Mensagem</button>
</form>
</section>
<!-- RODAPÉ -->
<footer>
<p>© <span id="year"></span> Joyce Oliveira. Todos os direitos reservados.</p>
</footer>
</div>
<script>
// Atualiza o ano no rodapé
document.getElementById('year').textContent = new Date().getFullYear();
// Banco de frases motivacionais
const quotes = [
"Não espere por oportunidades, crie você mesmo as suas!",
"O sucesso é a soma de pequenos esforços repetidos dia após dia.",
"Você é mais forte do que imagina!",
"A persistência é o caminho do êxito. - Charles Chaplin",
"Sua limitação é só uma etapa da sua evolução!",
"Tech é para todos, inclusive para você! 💪",
"Cada linha de código é um passo rumo ao seu crescimento.",
"Diversidade gera inovação. Sua voz é importante!",
"O fracasso é apenas a oportunidade de começar de novo, desta vez de forma mais inteligente. - Henry Ford",
"A tecnologia move o mundo, e você está construindo esse movimento!"
];
// Gerar frase aleatória
function refreshQuote() {
const randomIndex = Math.floor(Math.random() * quotes.length);
document.getElementById('motivationQuote').textContent = `"${quotes[randomIndex]}"`;
}
// Formulário de contato funcional
document.getElementById('contactForm').addEventListener('submit', function(e) {
e.preventDefault();
alert('Mensagem enviada com sucesso! Em breve entrarei em contato.');
this.reset();
});
</script>
</body>
</html>