i-eat.rocks/site/apps/info.html

52 lines
1.2 KiB
HTML
Raw Normal View History

2024-08-16 05:45:22 +00:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Info</title>
2024-08-15 23:51:36 +00:00
2024-08-16 05:45:22 +00:00
<style>
@keyframes hue {
0% {
filter: hue-rotate(0deg);
}
100% {
filter: hue-rotate(360deg);
}
2024-08-15 23:51:36 +00:00
}
2024-08-16 05:45:22 +00:00
h1 {
animation: hue 2s infinite linear;
color:red;
padding:0;
margin:0;
display: block;
}
p {
text-align: center;
width: 100%;
}
#body {
width: 100%;
padding:0;
margin:0;
height: 100%;
text-align: center;
}
</style>
2024-08-16 05:45:22 +00:00
<link rel="stylesheet" href="/apps/standard.css">
</head>
<body>
<div id="body">
<h1>i-eat.rocks</h1>
2024-08-17 02:40:00 +00:00
<p>Rock-OS v0.1.3</p>
2024-08-18 03:17:43 +00:00
<p><a style="color:purple; text-decoration: underline; cursor:pointer;" onclick="window.parent.postMessage('url mailto:possiblyaxolotl@i-eat.rocks')">Contact</a></p>
2024-09-14 03:01:08 +00:00
<img src="/images/ui/ieatrocks.png">
2024-08-16 05:45:22 +00:00
</div>
</body>
</html>