-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsobremim.html
More file actions
95 lines (74 loc) · 1.86 KB
/
sobremim.html
File metadata and controls
95 lines (74 loc) · 1.86 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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<title>Sobre Mim</title>
<style>
body {
background-color: black;
margin: 0;
color: #ABD6BA;
font-family: Arial;
padding: 40px;
}
h1 {
font-size: 42px;
margin-top: 0;
color: #00F5A0;
}
p {
font-size: 35px;
}
ul {
font-size: 33px;
}
</style>
</head>
<body>
<div class="texto">
<h1>Sobre Mim</h1>
<p>
Sou uma mulher de 39 anos e trabalho com turismo. No momento, estou buscando uma troca de carreira
e escolhi entrar na área de tecnologia.
Acredito que minha facilidade de integrações interpessoais e minha capacidade de adaptação podem facilitar
essa transição.
</p>
<p>
Atualmente estou adquirindo habilidades para atuar com Análise e Desenvolvimento de Sistemas e me
especializando em Engenharia de Front-end.
</p>
<p>
No momento, ainda não possuo portfólio, pois estou no início do processo de transição de carreira.
Porém, tenho um cronograma de metas definido:
</p>
<ul>
<li>Graduação concluída em 2 anos</li>
<li>Pós-graduação em Engenharia de Front-end em 1 ano</li>
<li>Inglês fluente em 1 ano</li>
</ul>
</div>
<style>
/* estilo dos botões*/
.botoes {
margin-top: 30px;
}
.botoes a {
text-decoration: none;
background-color: #0DFCBE;
color: #000;
padding: 10px 50px;
margin-right: 25px;
border-radius: 50px;
font-weight: bold;
font-size: 35px;
display:inline-flex;
}
</style>
<body>
<div class="botoes">
<a href="Atividade Pratica.html">Pagina Principal</a>
</div>
</body>
</html>
</body>
</html>