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

55 lines
1.4 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-10-20 03:05:27 +00:00
<p>Share the website:</p>
2024-10-30 01:53:45 +00:00
<img src="/images/ui/ieatrocks.png" />
2024-10-20 03:05:27 +00:00
<textarea>&lt;a href="https://i-eat.rocks"&gt;&lt;img src="https://i-eat.rocks/images/ui/ieatrocks.png" alt="i-eat.rocks" /&gt;&lt;/a&gt;</textarea>
2024-10-30 01:53:45 +00:00
<img src="/images/ui/rock.png" />
<textarea>&lt;a href="https://i-eat.rocks"&gt;&lt;img src="https://i-eat.rocks/images/ui/rock.png" alt="An unsuspecting rock" /&gt;&lt;/a&gt;</textarea>
2024-08-16 05:45:22 +00:00
</div>
</body>
</html>