Remove Old Files
This commit is contained in:
parent
771f354d74
commit
7c7d7f280d
2 changed files with 0 additions and 337 deletions
|
|
@ -1,322 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
|
||||
<title>angry.hair | Game Server Fury</title>
|
||||
<meta name="description" content="Home-hosted game servers with attitude. Join the rage. Connect to Minecraft, WoW, UT2004, BF1942 Desert Combat, and Valheim." />
|
||||
|
||||
<!-- Favicon (optional angry hair icon) -->
|
||||
<link rel="icon" href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.9em%22 font-size=%2290%22>💇🏽♂️</text></svg>">
|
||||
|
||||
<!--libcodef-->
|
||||
<script src="lib/codef_core.js"></script>
|
||||
<script src="lib/codef_scrolltext.js"></script>
|
||||
|
||||
<style>
|
||||
:root {
|
||||
--bg: #0a0a0a;
|
||||
--bg2: rgba(10,10,10,0.5);;
|
||||
--card: #1a1a1a;
|
||||
--text: #ff4d4d;
|
||||
--text-muted: #ff9999;
|
||||
--accent: #ff1a1a;
|
||||
--hair: #ff3333;
|
||||
--shadow: rgba(255, 50, 50, 0.3);
|
||||
}
|
||||
|
||||
* {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
body {
|
||||
background: var(--bg);
|
||||
color: var(--text-muted);
|
||||
font-family: 'Courier New', monospace;
|
||||
line-height: 1.6;
|
||||
overflow-x: hidden;
|
||||
}
|
||||
|
||||
.glitch {
|
||||
position: relative;
|
||||
display: inline-block;
|
||||
color: var(--hair);
|
||||
font-weight: bold;
|
||||
font-size: 2.5rem;
|
||||
letter-spacing: 2px;
|
||||
text-shadow:
|
||||
2px 2px 0 #ff1a1a,
|
||||
-2px -2px 0 #ff1a1a,
|
||||
0 0 10px rgba(255, 50, 50, 0.8);
|
||||
animation: glitch 2s infinite;
|
||||
}
|
||||
|
||||
@keyframes glitch {
|
||||
0%, 100% { text-shadow: 2px 2px 0 #ff1a1a, -2px -2px 0 #ff1a1a, 0 0 10px rgba(255,50,50,0.8); }
|
||||
14% { text-shadow: -2px -2px 0 #ff1a1a, 2px 2px 0 #ff1a1a, 0 0 15px rgba(255,50,50,1); }
|
||||
15% { text-shadow: 3px -3px 0 #ff1a1a, -3px 3px 0 #ff1a1a, 0 0 20px rgba(255,50,50,1); }
|
||||
16% { text-shadow: none; }
|
||||
17% { text-shadow: 2px 2px 0 #ff1a1a, -2px -2px 0 #ff1a1a, 0 0 10px rgba(255,50,50,0.8); }
|
||||
}
|
||||
|
||||
header {
|
||||
text-align: center;
|
||||
padding: 0rem 1rem;
|
||||
background: linear-gradient(to bottom, #1a0000, var(--bg2));
|
||||
border-bottom: 3px dashed var(--accent);
|
||||
position: fixed;
|
||||
top:0;
|
||||
left:0;
|
||||
z-index:1;
|
||||
width:100%;
|
||||
backdrop-filter: blur(10px);
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
header::before {
|
||||
content: "";
|
||||
position: absolute;
|
||||
top: 0; left: 0; right: 0; bottom: 0;
|
||||
background: repeating-linear-gradient(
|
||||
45deg,
|
||||
transparent,
|
||||
transparent 10px,
|
||||
rgba(255, 50, 50, 0.05) 10px,
|
||||
rgba(255, 50, 50, 0.05) 20px
|
||||
);
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-size: 3.5rem;
|
||||
margin-bottom: 0.5rem;
|
||||
color: var(--hair);
|
||||
}
|
||||
|
||||
.tagline {
|
||||
font-size: 1.3rem;
|
||||
color: #ff6666;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 3px;
|
||||
margin-top: 1rem;
|
||||
}
|
||||
|
||||
main {
|
||||
max-width: 900px;
|
||||
margin: 1rem auto;
|
||||
padding: 0 1rem;
|
||||
}
|
||||
|
||||
.game-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
|
||||
gap: 1.5rem;
|
||||
margin-top: 20rem;
|
||||
}
|
||||
|
||||
.game-card {
|
||||
background: var(--card);
|
||||
border: 2px solid var(--accent);
|
||||
border-radius: 8px;
|
||||
padding: 1.5rem;
|
||||
transition: all 0.3s ease;
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
box-shadow: 0 0 15px var(--shadow);
|
||||
}
|
||||
|
||||
.game-card:hover {
|
||||
transform: translateY(-8px);
|
||||
box-shadow: 0 0 25px rgba(255, 50, 50, 0.6);
|
||||
border-color: #ff6666;
|
||||
}
|
||||
|
||||
.game-card::before {
|
||||
content: "🔥";
|
||||
position: absolute;
|
||||
top: -10px;
|
||||
right: -10px;
|
||||
font-size: 2rem;
|
||||
opacity: 0.3;
|
||||
transform: rotate(15deg);
|
||||
}
|
||||
|
||||
.game-title {
|
||||
font-size: 1.5rem;
|
||||
color: var(--hair);
|
||||
margin-bottom: 0.5rem;
|
||||
font-weight: bold;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
.game-info {
|
||||
font-size: 0.95rem;
|
||||
margin-bottom: 1rem;
|
||||
color: var(--text-muted);
|
||||
}
|
||||
|
||||
.connect-btn {
|
||||
display: inline-block;
|
||||
background: var(--accent);
|
||||
color: white;
|
||||
padding: 0.6rem 1.2rem;
|
||||
border-radius: 4px;
|
||||
text-decoration: none;
|
||||
font-weight: bold;
|
||||
font-size: 0.9rem;
|
||||
transition: 0.3s;
|
||||
margin-top: 0.5rem;
|
||||
box-shadow: 0 0 10px rgba(255, 26, 26, 0.5);
|
||||
}
|
||||
|
||||
.connect-btn:hover {
|
||||
background: #ff3333;
|
||||
transform: scale(1.05);
|
||||
box-shadow: 0 0 20px rgba(255, 51, 51, 0.8);
|
||||
}
|
||||
|
||||
.instructions {
|
||||
margin-top: 1rem;
|
||||
font-size: 0.85rem;
|
||||
background: rgba(255, 50, 50, 0.1);
|
||||
padding: 0.8rem;
|
||||
border-left: 3px solid var(--hair);
|
||||
border-radius: 0 4px 4px 0;
|
||||
}
|
||||
|
||||
footer {
|
||||
text-align: center;
|
||||
padding: 2rem 1rem;
|
||||
margin-top: 3rem;
|
||||
color: #993333;
|
||||
font-size: 0.9rem;
|
||||
border-top: 1px dashed var(--accent);
|
||||
}
|
||||
|
||||
.hair-rage {
|
||||
font-size: 1.8rem;
|
||||
animation: rage 1.5s infinite;
|
||||
}
|
||||
|
||||
@keyframes rage {
|
||||
0%, 100% { transform: rotate(0deg); }
|
||||
25% { transform: rotate(5deg); }
|
||||
75% { transform: rotate(-5deg); }
|
||||
}
|
||||
|
||||
@media (max-width: 600px) {
|
||||
h1 { font-size: 2.5rem; }
|
||||
.glitch { font-size: 2rem; }
|
||||
.game-grid { grid-template-columns: 1fr; }
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<div id="main"></div>
|
||||
<div id="main2"></div>
|
||||
<p class="glitch" style="margin-top: 1rem; font-size: 1.1rem; color: #ff9999;">
|
||||
Self-Hosted Servers.
|
||||
</p>
|
||||
</header>
|
||||
|
||||
<main>
|
||||
<section class="game-grid">
|
||||
<!-- Minecraft -->
|
||||
<div class="game-card">
|
||||
<div class="game-title">Minecraft</div>
|
||||
<div class="game-info">
|
||||
<strong>Version:</strong> 1.20.4 (Paper)<br>
|
||||
<strong>Players:</strong> 3000 / 20<br>
|
||||
<strong>Status:</strong> <span style="color:#ff4d4d;">ONLINE</span>
|
||||
</div>
|
||||
<a href="#" onclick="alert('Connect to angry.hair in Minecraft.')" class="connect-btn">CONNECT</a>
|
||||
<div class="instructions">
|
||||
<strong>IP:</strong> <code>angry.hair</code><br>
|
||||
<strong>Port:</strong> <code>DEFAULT</code><br>
|
||||
<a href="mailto:david.n.mitchell@gmail.com">Request an invite</a>: Mail david.n.mitchell@gmail.com<br>
|
||||
Use either Java or Bedrock clients
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- World of Warcraft -->
|
||||
<div class="game-card">
|
||||
<div class="game-title">World of Warcraft</div>
|
||||
<div class="game-info">
|
||||
<strong>Expansion:</strong> Wrath of the Lich King<br>
|
||||
<strong>Realm:</strong> Angry Haircraft<br>
|
||||
<strong>Status:</strong> <span style="color:#ff4d4d;">ONLINE</span>
|
||||
</div>
|
||||
<a href="/windows/World%20of%20Warcraft/AngryHaircraft_3.3.5a.zip" class="connect-btn">DOWNLOAD CLIENT</a>
|
||||
<a href="/windows/World%20of%20Warcraft/AngryHaircraft_HD_3.3.5a.zip" class="connect-btn">DOWNLOAD CLIENT (HD)</a>
|
||||
<div class="instructions">
|
||||
1. Email <a href="mailto:david.n.mitchell@gmail.com">Dave</a> to request an account:<br>
|
||||
- include your preferred username<br>
|
||||
- include the password that you will use<br>
|
||||
2. You will get a password in the email response so you can download one of the clients above<br>
|
||||
3. Unzip client, run wow.exe, and use credentials from email<br>
|
||||
4. ???<br>
|
||||
5. Profit
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- BF1942 Desert Combat -->
|
||||
<div class="game-card">
|
||||
<div class="game-title">BF1942 + Desert Combat</div>
|
||||
<div class="game-info">
|
||||
<strong>Mod:</strong> Desert Combat 0.7<br>
|
||||
<strong>Map:</strong> Baghdad Nights<br>
|
||||
<strong>Status:</strong> <span style="color:#ff4d4d;">ONLINE</span>
|
||||
</div>
|
||||
<a href="bf1942://angry.hair:14567" class="connect-btn">JOIN SERVER</a>
|
||||
<div class="instructions">
|
||||
<strong>IP:</strong> <code>angry.hair:14567</code><br>
|
||||
Install DC Final + hotfixes. Pure rage.
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Unreal Tournament 2004 -->
|
||||
<div class="game-card">
|
||||
<div class="game-title">UT2004</div>
|
||||
<div class="game-info">
|
||||
<strong>Mode:</strong> Onslaught<br>
|
||||
<strong>Map:</strong> ONS-Torlan<br>
|
||||
<strong>Status:</strong> <span style="color:#ff4d4d;">ONLINE</span>
|
||||
</div>
|
||||
<a href="ut2004://angry.hair:7777" class="connect-btn">LAUNCH</a>
|
||||
<div class="instructions">
|
||||
<strong>IP:</strong> <code>angry.hair:7777</code><br>
|
||||
Patch to 3369. All bots. Pure skill.
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Valheim -->
|
||||
<div class="game-card">
|
||||
<div class="game-title">Valheim</div>
|
||||
<div class="game-info">
|
||||
<strong>World:</strong> FuryViking<br>
|
||||
<strong>Seed:</strong> ANGRYHAIR<br>
|
||||
<strong>Status:</strong> <span style="color:#ff4d4d;">ONLINE</span>
|
||||
</div>
|
||||
<a href="steam://connect/angry.hair:2456" class="connect-btn">JOIN WORLD</a>
|
||||
<div class="instructions">
|
||||
<strong>IP:</strong> <code>angry.hair:2456</code><br>
|
||||
Password: <code>badhairday</code><br>
|
||||
Vanilla+ mods. Vikings welcome.
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
</main>
|
||||
|
||||
<footer>
|
||||
<p>angry dot hair • Hosted from the closet using UPDOG™ technology, a GeoCities Brand • <span style="color:#ff4d4d;">No support. Only play.</span></p>
|
||||
<p style="margin-top: 0.5rem; font-size: 0.8rem; color: #660000;">
|
||||
Uptime not guaranteed. Hair may explode.
|
||||
</p>
|
||||
</footer>
|
||||
|
||||
<script src="script.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -1,15 +0,0 @@
|
|||
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
|
||||
<title>Angry Hair</title>
|
||||
</head>
|
||||
<body>
|
||||
<center>
|
||||
<h1>Angery Hair</h1>
|
||||
<a href="./windows">Winders</a>
|
||||
</center>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
Loading…
Reference in a new issue