This commit is contained in:
Sojus07
2025-04-09 23:19:18 +02:00
commit f3da212bbd
3 changed files with 69 additions and 0 deletions

24
index.html Normal file
View File

@ -0,0 +1,24 @@
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="./src/css/main.css">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>RFSwagger.lol</title>
<script src="./src/js/main.js" defer></script>
</head>
<body>
<div class="terminal">
<h1>👻 Waddup, cuh ?</h1>
<p>[ RFSwagger.lol ]</p>
<div>
<a href="https://0xcc01.de" class="btn">Website</a>
<a href="https://tor.0xcc01.de" class="btn">Tor Nodes</a>
<a href="https://git.0xcc01.de" class="btn">Git</a>
<a href="https://0xcc01.de/contact.html" class="btn">Contact 👀</a>
</div>
<div class="ghost"></div>
</div>
</body>
</html>

42
src/css/main.css Normal file
View File

@ -0,0 +1,42 @@
body {
background: #0d0d0d;
color: #00ff99;
font-family: monospace;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
margin: 0;
}
h1 {
font-size: 2rem;
margin-bottom: 1rem;
}
.terminal {
background: #111;
padding: 2rem;
border: 1px solid #00ff99;
border-radius: 5px;
text-align: center;
}
.btn {
display: inline-block;
margin: 0.5rem;
padding: 0.75rem 1.5rem;
color: #0d0d0d;
background-color: #00ff99;
border: none;
border-radius: 3px;
font-weight: bold;
text-decoration: none;
transition: 0.2s;
}
.btn:hover {
background-color: #00cc77;
}
.ghost {
margin-top: 1.5rem;
font-size: 1.25rem;
color: #888;
}

3
src/js/main.js Normal file
View File

@ -0,0 +1,3 @@
var textArray = ["HECK YEAH. I LOVE ALT GIRLS", "DID YOU SAW THE HOTSPOT?", "I LIKE SATELLITES", "AUTISTIC ASF", "CHICKENJOCKEY"];
var randomIndex = Math.floor(Math.random() * textArray.length);
document.getElementsByClassName("ghost")[0].innerHTML = "&quot;" + textArray[randomIndex] + "&quot;";