-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy path2025111790115.html
More file actions
106 lines (91 loc) · 2.36 KB
/
Copy path2025111790115.html
File metadata and controls
106 lines (91 loc) · 2.36 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
<!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 Vitae</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f4f4f4;
color: #333;
margin: 0;
padding: 0;
}
header {
text-align: center;
background-color: #0073e6;
color: white;
padding: 20px;
}
header h1 {
margin: 0;
}
header p {
margin: 5px 0;
}
main {
max-width: 800px;
margin: 20px auto;
background: white;
padding: 20px;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
section {
margin-bottom: 20px;
padding-left: 10px;
border-left: 4px solid #0073e6;
}
h2 {
color: #0073e6;
}
ul {
padding-left: 20px;
}
footer {
text-align: center;
font-size: 14px;
color: #666;
padding: 10px;
background: #f4f4f4;
margin-top: 20px;
}
</style>
</head>
<body>
<header>
<h1>Romulo Frade Cardoso Fernandes</h1>
<p>Email: romulofcf@email.com | Telefone: (83) 98629-2104</p>
<p>Endereço: Cabedelo, Paraíba</p>
</header>
<main>
<section>
<h2>Objetivo</h2>
<p>Terminar o curso.</p>
</section>
<section>
<h2>Suporte Tecnico</h2>
<h3>AEC - Atendente</h3>
<p><strong>Período:</strong> 09/2024 - Atual</p>
<p>Suporte em e-mails.</p>
</section>
<section>
<h2>Tecnico incompleto</h2>
<h3>UNIESP</h3>
<p>Sistemas para internet - 2027</p>
</section>
<section>
<h2>Habilidades</h2>
<ul>
<li>HTML</li>
<li>CSS</li>
<li>PYTHON</li>
</ul>
</section>
</main>
<footer>
<p>Atualizado em: 03/2025</p>
</footer>
</body>
</html>