mirror of
https://github.com/idanoo/interesting.rocks
synced 2025-07-01 05:32:19 +00:00
Initial Commit
This commit is contained in:
parent
8b5759bc2f
commit
e1c6b69ae1
3 changed files with 40 additions and 0 deletions
BIN
favicon.ico
Normal file
BIN
favicon.ico
Normal file
Binary file not shown.
After Width: | Height: | Size: 15 KiB |
40
index.html
Normal file
40
index.html
Normal 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
BIN
rock.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 143 KiB |
Loading…
Add table
Add a link
Reference in a new issue