-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
76 lines (76 loc) · 2.65 KB
/
index.html
File metadata and controls
76 lines (76 loc) · 2.65 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Ode to John Pork</title>
<style>
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background: linear-gradient(to bottom right, #1e1e2f, #3e3e5e);
color: #f0f0f0;
margin: 0;
padding: 40px 20px;
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
}
img {
max-width: 200px;
border-radius: 50%;
margin-bottom: 30px;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
}
h1 {
font-size: 3em;
margin-bottom: 0.2em;
}
.poem {
max-width: 700px;
background-color: rgba(255, 255, 255, 0.05);
padding: 30px;
border-radius: 12px;
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}
.line {
margin: 12px 0;
font-size: 1.2em;
}
.signature {
margin-top: 40px;
font-style: italic;
color: #bbbbbb;
}
</style>
</head>
<body>
<img src="pork.jpeg" alt="John Pork">
<h1>Ode to John Pork</h1>
<div class="poem">
<div class="line">He walks in pixels, suit crisp and clean,</div>
<div class="line">A digital swine in a world unseen.</div>
<div class="line">Phone rings—he never picks it up,</div>
<div class="line">Yet memes overflow the empty cup.</div>
<div class="line">John Pork, surreal and oddly wise,</div>
<div class="line">With swine-slick charm and human eyes.</div>
<div class="line">A snout that knows the internet’s tide,</div>
<div class="line">A legend that no app can hide.</div>
<div class="line">You wear your blazer like no hog should,</div>
<div class="line">Pacing crosswalks through neighborhoods.</div>
<div class="line">Are you a glitch? A dream? A call?</div>
<div class="line">A prank divine? Or none at all?</div>
<div class="line">From TikTok’s depths to Instagram scrolls,</div>
<div class="line">You haunt the feeds, you play your roles.</div>
<div class="line">Missed calls echo through empty halls,</div>
<div class="line">Yet never once your silence falls.</div>
<div class="line">Oh John, who answers not a sound,</div>
<div class="line">We chase your myth, where memes are found.</div>
<div class="line">In pig-shaped form, yet strangely known,</div>
<div class="line">You made the wired world your own.</div>
<div class="line">The phone still rings. We dare not ask—</div>
<div class="line">Behind that snout, what is the mask?</div>
<div class="signature">– A fan of the uncanny</div>
</div>
</body>
</html>