Add public/dum.html

This commit is contained in:
sent 2025-04-15 13:04:07 -07:00
parent 1abde6726c
commit 6d11ed6c05

24
public/dum.html Normal file
View File

@ -0,0 +1,24 @@
<html>
<head>
<meta charset="UTF-8">
<title>explosive baboon</title>
<style>
html, body {
margin: 0;
padding: 0;
width: 100vw;
height: 100vh;
background: black;
animation: flash 0.05s infinite;
}
@keyframes flash {
0% { background-color: black; }
50% { background-color: white; }
100% { background-color: black; }
}
</style>
</head>
<body>
</body>
</html>