-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathleticia.html
More file actions
61 lines (58 loc) · 1.75 KB
/
leticia.html
File metadata and controls
61 lines (58 loc) · 1.75 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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Página da Letícia</title>
<style>
body {
background-color: #e91e63; /* rosa chiclete */
font-family: 'Quicksand', sans-serif; /* Fonte mais fofa */
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
position: relative;
}
.container {
text-align: center;
max-width: 600px;
padding: 20px;
background-color: #ffcbd5;
border-radius: 10px;
box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
position: relative;
z-index: 1; /* Garante que o conteúdo fique acima dos elementos estilizados */
}
h1 {
font-size: 3em;
color: #e91e63;
margin-bottom: 10px;
}
p {
font-size: 1.5em;
color: #333;
line-height: 1.6;
margin-bottom: 20px;
}
.princesa-jujuba {
max-width: 100%;
height: auto;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
margin-top: 20px;
}
</style>
</head>
<body>
<div class="left-deco"></div>
<div class="right-deco"></div>
<div class="container">
<h1>Página da Let</h1>
<p>oi novos devs da fefelê!</p>
<img class="princesa-jujuba" src="https://64.media.tumblr.com/e737ff0045b9a4c8d3b3d6ae5e758447/tumblr_o9c31u22221uzp44mo1_500.gifv" alt="Princesa Jujuba">
</div>
</body>
</html>