1
0

first commit

This commit is contained in:
2026-05-17 17:05:59 -06:00
commit d9034e4074
7 changed files with 167 additions and 0 deletions

1
.gitignore vendored Normal file
View File

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

27
freeram.css Normal file
View File

@@ -0,0 +1,27 @@
body {
background-color: rgb(045, 045, 045);
font-family: "JetBrains Mono", monospace;
text-align: center;
overflow: hidden;
}
.title {
color: white;
font-size: 25px;
}
.links {
background-color: #ffb6fa;
width: 200px;
height: 50px;
border-radius: 25px;
}
.fortnite {
display: flex;
position: relative;
justify-content: center;
align-items: center;
width: 100vw;
height: 50vh;
}

16
freeram.html Normal file
View File

@@ -0,0 +1,16 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Free Ram</title>
<link rel="stylesheet" href="freeram.css">
</head>
<body>
<h1 class="title">Free Ram Install 2026 no virus, rat, hardware id stealer, malware, aimbot, free 2026</h1>
<div class="fortnite">
<a href="https://www.youtube.com/watch?v=48rz8udZBmQ">
<button class="links">Download Now!</button>
</a>
</div>
</body>
</html>

45
index.css Normal file
View File

@@ -0,0 +1,45 @@
body {
text-align: center;
background-color: rgb(045, 045, 045);
font-family: "JetBrains Mono", monospace;
}
h1 {
color: #ffb6fa;
}
h3 {
color: white;
}
footer {
font-size: 15px;
color: rgb(180, 180, 180);
bottom: 0;
position: fixed;
width: 100%;
}
img {
height: 100px;
width: 100px;
margin: 10px;
border-color: #ffb6fa;
border-style: solid;
border-width: 4px;
border-radius: 100px;
}
.mainlinks {
font-size: 25px;
color: #ffb6fa;
}
.source {
color: rgb(155, 214, 255);
}
.diver {
padding-bottom: 20px;
}

26
index.html Normal file
View File

@@ -0,0 +1,26 @@
<!DOCTYPE html>
<link rel="icon" type="image/png" href="https://images.elliemese.win/peachpfp.png">
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Elliemese's Silly Website</title>
<link rel="stylesheet" href=index.css>
</head>
<body>
<img src="https://images.elliemese.win/peachpfp.png" alt="Elliemese's Profile Picture">
<h1>Elliemese's Silly Website</h1>
<h3>This website is a fun little project I have, I host some things on it too!</h3>
<div class="diver">
<a class="mainlinks" href="https://discord.gg/qs3zWDew3N">My Discord Server</a>
</div>
<div class="diver">
<a class="mainlinks" href="quotes.html">My Quotes Page</a>
</div>
<div class="diver">
<a class="mainlinks" href="freeram.html">Free Ram Distributable</a>
</div>
<hr>
<a class="source" href="https://git.decalfree.com/Elliemese/Sites">Source Code</a>
<footer>Ts looks ass cause I don't want an AI website, working on it looking better soon!</footer>
</body>
</html>

34
quotes.css Normal file
View File

@@ -0,0 +1,34 @@
body {
background-color: rgb(045, 045, 045);
text-align: center;
font-family: 'JetBrains Mono', monospace;
}
.headertext {
color: white;
font-size: 50px;
}
.headerimage {
border-radius: 10%;
height: 150px;
border-color: white;
border-width: 4px;
}
.headerbutsmallertext {
color: white;
font-size: 25px;
}
p {
color: white;
font-size: 22px;
}
a {
color: rgb(155, 214, 255);
}
.homepagebutt{
text-align: left;
}

18
quotes.html Normal file
View File

@@ -0,0 +1,18 @@
<!DOCTYPE html>
<link rel="icon" type="image/png" href="https://files.elliemese.win/quote.png">
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Quotes</title>
<link rel="stylesheet" href=quotes.css>
</head>
<body>
<a class="homepagebutt" href="/index.html">Go Back To Homepage</a>
<h1 class="headertext">Quotes</h1>
<img class="headerimage" src="https://files.elliemese.win/quote.png" alt="weird ass quote stock image">
<h2 class="headerbutsmallertext">This is just a quote list lmao, simple as that :3</h2>
<hr>
<p>"I like femboys" -DecalFree, 4/3/2026</p>
<p>"You cant beat the gay tags. The gay tags will always be the best tags." -DecalFree, 5/17/2026</p>
</body>
</html>