Initial Commit

This commit is contained in:
Daniel Mason 2025-04-12 13:20:41 +12:00
parent 8b5759bc2f
commit e1c6b69ae1
Signed by: idanoo
GPG key ID: 387387CDBC02F132
3 changed files with 40 additions and 0 deletions

BIN
favicon.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

40
index.html Normal file
View file

@ -0,0 +1,40 @@
<!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>

BIN
rock.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 143 KiB