-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathapril.html
61 lines (48 loc) · 786 Bytes
/
april.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>April</title>
<meta name="description" content="A poem">
<style>
body {
margin: 2rem;
}
footer {
margin-block: 3rem;
h4 {
margin-block: 0;
}
p {
margin-block: 0.5rem;
opacity: 0.6;
}
}
@media (prefers-color-scheme: dark) {
body {
background-color: oklch(31.14% 0.021 285.75);
color: oklch(90% 0.008 286.75);
}
}
</style>
</head>
<body>
<main>
<p>
April comes, silently
</p>
<p>
The leaves of brilliance, float in the air<br>
Crushed under feet
</p>
<p>
April, again
</p>
</main>
<footer>
<h4>April comes, silently</h4>
<p><small>Manav Rathi<br>April 2nd, 2024</small></p>
</footer>
</body>
</html>