1
0

first commit

This commit is contained in:
2026-05-24 21:37:18 -06:00
commit 17212bd682
3 changed files with 39 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@@ -0,0 +1 @@
.idea

22
index.css Normal file
View File

@@ -0,0 +1,22 @@
body {
text-align: center;
background: rgb(45,45,45);
color: white;
font-family: "JetBrains Mono", monospace;
}
img {
height: 100px;
}
.big {
font-size: 25px;
}
.smol {
font-size: 15px;
}
a {
color: rgb(155, 214, 255);
}

16
index.html Normal file
View File

@@ -0,0 +1,16 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>elliemese.win Files Page</title>
<link rel="stylesheet" href="index.css">
<link rel="icon" href="https://files.elliemese.win/files.jpg">
</head>
<body>
<h1>Files</h1>
<img src="https://files.elliemese.win/files.jpg" alt="files 😲🤯🙀">
<p class="big">This page is just hosted to have files available for the public.</p>
<p class="smol">This page was only created in case you stumbled here on accident!</p>
<a href="https://elliemese.win">Go back to the homepage!</a>
</body>
</html>