Initial commit

This commit is contained in:
neko 2025-01-27 16:14:32 -05:00 committed by neko
commit 08c86f6a8b
5 changed files with 57 additions and 0 deletions

14
contact.html Normal file
View File

@ -0,0 +1,14 @@
<!DOCTYPE html>
<html lang="en">
<head>
<title>nekoworks.xyz</title>
<link rel="stylesheet" type="text/css" href="files/style.css">
</head>
<body>
Bother me on Matrix, @neko:nekoworks.moe
<p>
TODO: make proper contact page
</p>
</body>
</html>

BIN
files/6668093.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.9 KiB

BIN
files/banner.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 614 KiB

8
files/style.css Normal file
View File

@ -0,0 +1,8 @@
body {
background-color: white;
margin: 0;
width: 100%;
}
th, td {
padding-right: 30px;
}

35
index.html Normal file
View File

@ -0,0 +1,35 @@
<!DOCTYPE html>
<html lang="en">
<head>
<title>nekoworks.moe</title>
<link rel="stylesheet" type="text/css" href="files/style.css">
</head>
<body>
<div>
<center>
<h1>Site under construction</h1>
<img id="banner" src="files/banner.gif" alt="server maintenance">
</div>
<br>
<div style="text-align: center;">
<div style="display: inline-block; text-align: left;">
<!-- Links -->
<table>
<tr>
<td><a href="https://blog.nekoworks.moe/">Blog</a></td>
</tr>
<tr>
<td><a href="https://git.nekoworks.moe/">Git</a></td>
</tr>
</table>
</div>
</div>
<br>
<div>
<center>
<a href="https://my.fsf.org/join?referrer=6668093"><img src="files/6668093.png" alt="FSF member since 2024"></a><br>
<a href="./contact.html">Contact</a>
</div>
</body>
</html>