Created
February 18, 2024 17:00
-
-
Save RobinBoers/ab888ec074493d3c8a57b9422038f9cb to your computer and use it in GitHub Desktop.
Little homepage: https://dupunkto.org/~axcelott
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8" /> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | |
<title>Axcelott</title> | |
<style> | |
:root { | |
color-scheme: light dark; | |
} | |
html { | |
display: flex; | |
flex-direction: column; | |
justify-content: center; | |
align-items: center; | |
min-height: 65vh; | |
} | |
pre { | |
color: #a70048; | |
} | |
@media (max-width: 840px) { | |
body { | |
max-width: 420px; | |
} | |
} | |
@media (min-width: 840px) { | |
body { | |
display: grid; | |
grid-template-columns: 420px 420px; | |
max-width: 820px; | |
} | |
section { | |
margin-top: 2em; | |
} | |
} | |
</style> | |
</head> | |
<body> | |
<section> | |
<h1>Hi.</h1> | |
<p> | |
My name's Robin, but my handle is Axcelott. I am co-maintainer of this | |
server, <code>du11</code>. | |
</p> | |
<p> | |
I already have <a href="//roblog.nl">a personal website</a>, so I'm not | |
really sure what I'm gonna use this little space for. | |
</p> | |
<p>Anyway, here's some ASCII-art for you to enjoy :p</p> | |
</section> | |
<pre><code> | |
, , | |
/( )` | |
\ \___ / | | |
/- _ `-/ ' | |
(/\/ \ \ /\ | |
/ / | ` \ | |
O O ) / | | |
`-^--'`< ' | |
(_.) _ ) / | |
`.___/` / | |
`-----' / | |
<----. __ / __ \ | |
<----|====O)))==) \) /==== | |
<----' `--' `.__,' \ | |
| | | |
\ / | |
______( (_ / \______ | |
,' ,-----' | \ | |
`--{__________) \/ | |
</code></pre> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment