-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathneli.html
More file actions
57 lines (50 loc) · 1.49 KB
/
neli.html
File metadata and controls
57 lines (50 loc) · 1.49 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
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<title>Gatinhos Animados</title>
<style>
body {
background-color: #fff0f5;
text-align: center;
font-family: 'Comic Sans MS', cursive, sans-serif;
padding: 30px;
}
h1 {
font-size: 4em;
color: #ff69b4;
margin-bottom: 40px;
}
.linha {
display: flex;
justify-content: center;
gap: 30px;
margin-bottom: 30px;
}
.linha img {
width: 250px;
height: auto;
border-radius: 20px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
transition: transform 0.3s ease;
}
.linha img:hover {
transform: scale(1.05);
}
</style>
</head>
<body>
<h1>Oi 😺</h1>
<div class="linha">
<img src="https://media.giphy.com/media/JIX9t2j0ZTN9S/giphy.gif" alt="Gatinho animado 1">
<img src="https://media.giphy.com/media/mlvseq9yvZhba/giphy.gif" alt="Gatinho animado 2">
</div>
<div class="linha">
<img src="https://media.giphy.com/media/13borq7Zo2kulO/giphy.gif" alt="Gatinho animado 3">
<img src="https://media.giphy.com/media/v6aOjy0Qo1fIA/giphy.gif" alt="Gatinho animado 4">
</div>
<div class="linha">
<img src="https://media.giphy.com/media/3oriO0OEd9QIDdllqo/giphy.gif" alt="Gatinho animado 5">
</div>
</body>
</html>