interesting.rocks/index.html
2025-04-12 13:20:41 +12:00

40 lines
933 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>interesting.rocks</title>
<link rel="icon" href="./favicon.ico" type="image/x-icon">
<style>
body {
margin: 0;
padding: 0;
}
main {
width: 500px;
margin: 50px auto;
text-align: center;
}
.rotate {
animation: rotation 5s infinite linear;
}
@keyframes rotation {
from {
transform: rotate(0deg);
}
to {
transform: rotate(359deg);
}
}
</style>
</head>
<body>
<main>
<h1>interesting.rocks</h1>
<img src="rock.png" alt="rock" class="rotate">
</main>
</body>
</html>