-
Notifications
You must be signed in to change notification settings - Fork 0
/
you.html
64 lines (62 loc) · 1.5 KB
/
you.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Poem</title>
<style>
body {
font-family: 'Helvetica', Arial, sans-serif;
background-color: #f6edd3;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
}
.container {
background-color: #fff;
border-radius: 10px;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
padding: 30px;
text-align: center;
max-width: 400px;
margin: 20px;
}
p {
font-size: 24px;
margin: 0 0 20px;
color: #333;
}
img {
max-width: 100%;
height: auto;
border-radius: 8px;
box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}
@keyframes slideIn {
0% {
transform: translateX(-100%);
opacity: 0;
}
100% {
transform: translateX(0);
opacity: 1;
}
}
.slideIn {
animation-name: slideIn;
animation-duration: 4s;
}
</style>
</head>
<body>
<div class="container">
<div class="slideIn">
<p><em>You Said</em></p>
<img src="crimson leaves.png" alt="Solaced by the Cosmos">
</div>
</div>
</body>
</html>