This commit is contained in:
dupa 2024-01-08 17:57:43 +01:00
commit 7b2012ff37
6 changed files with 112 additions and 0 deletions

4
README.md Normal file
View File

@ -0,0 +1,4 @@
# website
my website
<a href="https://aey.ovh">aey.ovh</a>

BIN
assets/img/cowsay.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.6 KiB

17
assets/style.css Normal file
View File

@ -0,0 +1,17 @@
body {
background-color: #000;
color: #fff;
font-family: sans-serif;
font-size: 20px;
text-align: center;
}
body a {
color: #fff;
text-decoration: none;
}
hr {
width: 200px;
color: #fff;
}

25
index.html Normal file
View File

@ -0,0 +1,25 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>~/</title>
<link rel="stylesheet" href="/assets/style.css">
</head>
<body>
<nav>
<a href="/index.html">home</a>
<a href="/links.html">links</a>
<a href="/projects.html">projects</a>
</nav>
<hr>
<img src="/assets/img/cowsay.png" width="250" height="150">
<p>hi i'm stupid guy that likes computers and anime</p>
<br><br>
<h5>ur mom | aey.ovh 2023<h5>
</body>
</html>

27
links.html Normal file
View File

@ -0,0 +1,27 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>~/links</title>
<link rel="stylesheet" href="/assets/style.css">
</head>
<body>
<nav>
<a href="/index.html">home</a>
<a href="/links.html">links</a>
<a href="/projects.html">projects</a>
</nav>
<hr>
<h3>selfhosted stuff:</h3>
<a href="https://git.aey.ovh">git,</a>
<a href="https://files.aey.ovh"> file server</a><br><br>
<br><br>
<h5>ur mom | aey.ovh 2023<h5>
</body>
</html>

39
projects.html Normal file
View File

@ -0,0 +1,39 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>~/projects</title>
<link rel="stylesheet" href="/assets/style.css">
</head>
<body>
<nav>
<a href="/index.html">home</a>
<a href="/links.html">links</a>
<a href="/projects.html">projects</a>
</nav>
<hr>
<h2>projects</h2>
<a href="https://git.aey.ovh/whoami/fiutex"><h3>fiutex</h3></a>
<p>shity pseuo shell wirten in cpp</p><br>
<a href=""><h3>cubegame</h3></a>
<p>2d sandbox</p><br>
<a href="https://git.aey.ovh/whoami/website"><h3>personal webiste</h3></a>
<p>webiste on which youre</p><br>
<a href="https://git.aey.ovh/whoami/replitRemoteAccess"><h3>replit remote</h3></a>
<p>something like ssh but for replit</p>
<br><br>
<h5>ur mom | aey.ovh 2023<h5>
</body>
</html>