-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAtividade Pratica.html
More file actions
98 lines (82 loc) · 2.16 KB
/
Atividade Pratica.html
File metadata and controls
98 lines (82 loc) · 2.16 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
<!DOCTYPE html>
<html lang="pt">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Portfólio Pessoal</title>
<style>
/*estilo geral da pagina*/
body {
background-color: black;
margin: 0;
color: #ABD6BA;
font-family: Arial;
}
/* configuração imagem com texto*/
.perfil {
display: flex;
align-items: flex-start;
padding: 6vh;
}
/*estilo da imagem de pergil*/
.perfil img {
width: 440px;
border-radius: 40px;
}
/*configuração do texto ao lado da imagem*/
.perfil .texto {
padding-left: 100px;
max-width: 600%;
}
h1 {
font-size: 42px;
margin-top: 0;
color: #00F5A0;
}
p {
font-size: 35px;
line-height: 1.6;
}
</style>
</head>
<body>
<div class="perfil">
<img src="perfil02.jpeg" alt="Foto da Adriana Câmara">
<div class="texto">
<h1>Portfólio da Adriana Câmara</h1>
<p>Seja muito bem-vindo(a) ao meu primeiro site!</p>
<p>Este espaço foi criado com muito carinho para compartilhar uma fase muito
especial da minha vida: a minha mudança de carreira.</p>
<p>Aqui, você vai acompanhar um pouco da minha trajetória, os motivos que me
levaram a mudar de área, os desafios enfrentados e as conquistas que estou
alcançando nesse novo caminho profissional.</p>
<p>Obrigada por visitar e sinta-se em casa!</p>
</div>
</div>
</body>
<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="sobremim.html">Sobre Mim</a>
<a href="formacao.html">Formação</a>
<a href="Portifolio.html">Portifólio</a>
<a href="contato.html">Contato</a>
</div>
</body>
</html>