-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
134 lines (129 loc) · 3.01 KB
/
Copy pathindex.html
File metadata and controls
134 lines (129 loc) · 3.01 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
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Currículo - Mileny Oliveira</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: Arial, sans-serif;
background-color: #f5f5f5;
color: #333;
padding: 20px;
}
.container {
max-width: 800px;
margin: 0 auto;
background-color: #fff;
padding: 40px;
border-radius: 8px;
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
header {
text-align: center;
border-bottom: 3px solid #2e8b57;
padding-bottom: 20px;
margin-bottom: 30px;
}
header h1 {
font-size: 2em;
color: #2e8b57;
}
header p {
color: #666;
margin-top: 5px;
}
section {
margin-bottom: 25px;
}
section h2 {
font-size: 1.2em;
color: #2e8b57;
border-left: 4px solid #2e8b57;
padding-left: 10px;
margin-bottom: 12px;
text-transform: uppercase;
}
.info-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 8px;
}
.info-item span {
font-weight: bold;
}
ul {
list-style: none;
padding-left: 10px;
}
ul li {
padding: 4px 0;
border-bottom: 1px solid #eee;
}
ul li::before {
content: "▸ ";
color: #2e8b57;
}
.experiencia-item {
margin-bottom: 15px;
}
.experiencia-item h3 {
color: #444;
}
.experiencia-item .periodo {
font-size: 0.9em;
color: #888;
}
</style>
</head>
<body>
<div class="container">
<header>
<h1>Mileny Oliveira</h1>
<p>📧 milenyjj@gmail.com | 📞 (16) 92005-3801</p>
<p>📍 São Paulo, Brasil | Brasileira | Solteira | 24 anos</p>
</header>
<section>
<h2>🎯 Objetivo</h2>
<p>Atuar na área de Saúde e Tecnologia, contribuindo com soluções inovadoras que integrem ciência de dados e desenvolvimento de interfaces web.</p>
</section>
<section>
<h2>🎓 Formação Acadêmica</h2>
<ul>
<li>Ensino Médio Completo</li>
<li>Cursando Ensino Superior</li>
</ul>
</section>
<section>
<h2>📚 Cursos Complementares</h2>
<ul>
<li>Designer de Interface Web</li>
<li>Programação em Python</li>
<li>Ciências de Dados e IA</li>
<li>Desenvolvimento Front-end (HTML, CSS)</li>
</ul>
</section>
<section>
<h2>💼 Experiência Profissional</h2>
<div class="experiencia-item">
<h3>Outback Steakhouse</h3>
<p class="periodo">Atendimento ao cliente e trabalho em equipe</p>
</div>
</section>
<section>
<h2>🛠️ Habilidades Técnicas</h2>
<ul>
<li>HTML5 e CSS3</li>
<li>Python básico</li>
<li>Noções de Ciência de Dados</li>
<li>Design de Interfaces Web</li>
</ul>
</section>
</div>
</body>
</html>