Newer
Older
<!doctype html>
<html class="no-js" lang="">
<head>
<meta charset="utf-8">
<title>My Nut | 🔴 Live</title>
<meta name="description" content="Nut license. (engine revving)">
<meta property="og:title" content="My Nut | 🔴 Live">
<meta property="og:image" content="/mstile-310x310.png">
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
<link rel="manifest" href="site.webmanifest">
<link rel="apple-touch-icon-precomposed" sizes="57x57" href="apple-touch-icon-57x57.png"/>
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="apple-touch-icon-114x114.png"/>
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="apple-touch-icon-72x72.png"/>
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="apple-touch-icon-144x144.png"/>
<link rel="apple-touch-icon-precomposed" sizes="60x60" href="apple-touch-icon-60x60.png"/>
<link rel="apple-touch-icon-precomposed" sizes="120x120" href="apple-touch-icon-120x120.png"/>
<link rel="apple-touch-icon-precomposed" sizes="76x76" href="apple-touch-icon-76x76.png"/>
<link rel="apple-touch-icon-precomposed" sizes="152x152" href="apple-touch-icon-152x152.png"/>
<link rel="icon" type="image/png" href="favicon-196x196.png" sizes="196x196"/>
<link rel="icon" type="image/png" href="favicon-96x96.png" sizes="96x96"/>
<link rel="icon" type="image/png" href="favicon-32x32.png" sizes="32x32"/>
<link rel="icon" type="image/png" href="favicon-16x16.png" sizes="16x16"/>
<link rel="icon" type="image/png" href="favicon-128.png" sizes="128x128"/>
<meta name="application-name" content=" "/>
<meta name="msapplication-TileColor" content="#FFFFFF"/>
<meta name="msapplication-TileImage" content="mstile-144x144.png"/>
<meta name="msapplication-square70x70logo" content="mstile-70x70.png"/>
<meta name="msapplication-square150x150logo" content="mstile-150x150.png"/>
<meta name="msapplication-wide310x150logo" content="mstile-310x150.png"/>
<meta name="msapplication-square310x310logo" content="mstile-310x310.png"/>
<meta name="theme-color" content="#ecb66e">
<style>
.flashing {
animation: flashing-anim 2s infinite ease-in-out;
}
@keyframes flashing-anim {
0% {
opacity: 1;
}
50% {
opacity: 0;
}
100% {
opacity: 1;
}
}
</style>
</head>
<body>
<div style="height: 100%; width: 100%; position: relative">
<div
style="position:absolute; top: 10%; right: 10%; width: min-content; display: inline-flex; align-items: center;">
<div style="width: 2rem; height: 2rem; background-color: #FF5645; border-radius: 100%" class="flashing"></div>
<span style="font-size: large; font-family: sans-serif; margin-left: 0.5rem; margin-top: 4px"
class="neon">LIVE</span>
</div>
<img
id="nutimg"
srcset="img/my-nut-400w.png 400w, img/my-nut-600w.png 600w, img/my-nut-800w.png 800w, img/my-nut-1000w.png 1000w, img/my-nut-1200w.png 1200w, img/my-nut-1600w.png 1600w, img/my-nut-2000w.png 2000w"
sizes="(max-width: 400px) 400px, (max-width: 600px) 600px, (max-width: 800px) 800px, (max-width: 1000px) 1000px, (max-width: 1200px) 1200px, (max-width: 1600px) 1600px, (min-width: 1601px) 2000px"
src="img/my-nut-2000.png"
alt="My Nut"
loading="lazy"
width="100%"
height="100%"
/>
<audio id="nutsounds">
<source type="audio/mp3" src="aud/damn-this-is-a-big-nut-im-gonna-have-to-get-a-bigger-wallet.mp3">
<source type="audio/ogg" src="aud/damn-this-is-a-big-nut-im-gonna-have-to-get-a-bigger-wallet.ogg">
<source type="audio/aac" src="aud/damn-this-is-a-big-nut-im-gonna-have-to-get-a-bigger-wallet.aac">
<source type="audio/wav" src="aud/damn-this-is-a-big-nut-im-gonna-have-to-get-a-bigger-wallet.wav">
</audio>
</div>
<script type="application/javascript" async>
document.getElementById('nutimg').addEventListener('click', function () {
document.getElementById('nutsounds').play();
});
</script>
</body>
</html>