32 lines
661 B
HTML
32 lines
661 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<head>
|
|
<title>Julius' meme corner</title>
|
|
<style>
|
|
html {
|
|
color-scheme: light dark;
|
|
}
|
|
|
|
body {
|
|
width: 35em;
|
|
margin: 0 auto;
|
|
font-family: Tahoma, Verdana, Arial, sans-serif;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<h1>Welcome to my site!</h1>
|
|
<p>There's something here...</p>
|
|
<h2>Services that I run here</h2>
|
|
<ul>
|
|
<li><a href="//git.asraphiel.dev">Gitea</a></li>
|
|
<li><a href="//shell.s3.asraphiel.dev">Minio</a></li>
|
|
<li>Vault</li>
|
|
<li>Postgres DB</li>
|
|
<li>Docker Registry</li>
|
|
</ul>
|
|
</body>
|
|
|
|
</html> |