interesting.rocks/index.html
2025-04-12 13:23:24 +12:00

45 lines
1.1 KiB
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;
}
img {
margin-top: 5px;
}
@keyframes rotation {
from {
transform: rotate(0deg);
}
to {
transform: rotate(359deg);
}
}
</style>
</head>
<body>
<main>
<h1>interesting.rocks</h1>
<img src="rock1.png" alt="rock" class="rotate">
<img src="rock2.png" alt="rock" class="rotate">
<img src="rock3.png" alt="rock" class="rotate">
</main>
</body>
</html>