21 lines
515 B
HTML
21 lines
515 B
HTML
<!DOCTYPE html>
|
|
<html><head><title>portfolio.runner</title><meta charset="utf-8">
|
|
<script src="https://cdn.tailwindcss.com"></script>
|
|
<style type="text/css" media="screen">
|
|
#loading {
|
|
-webkit-animation: rotation 2s infinite linear;
|
|
}
|
|
|
|
@-webkit-keyframes rotation {
|
|
from {
|
|
-webkit-transform: rotate(0deg);
|
|
}
|
|
|
|
to {
|
|
-webkit-transform: rotate(359deg);
|
|
}
|
|
}
|
|
</style>
|
|
|
|
</head><body><script src="/js/portfolio.js"></script></body></html>
|