38 lines
647 B
HTML
38 lines
647 B
HTML
|
<style>
|
||
|
@keyframes hue {
|
||
|
0% {
|
||
|
filter: hue-rotate(0deg);
|
||
|
}
|
||
|
|
||
|
100% {
|
||
|
filter: hue-rotate(360deg);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
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>
|
||
|
<div id="body">
|
||
|
<h1>i-eat.rocks</h1>
|
||
|
<p>v0.0.0</p>
|
||
|
<a href = 'https://www.possiblyaxolotl.com/'>Created by PossiblyAxolotl</a>
|
||
|
</div>
|