-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathclients.html
More file actions
119 lines (110 loc) · 4.71 KB
/
clients.html
File metadata and controls
119 lines (110 loc) · 4.71 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Eaglercraft Clients - Silicon Launcher</title>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap" rel="stylesheet">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="style.css">
<link rel="icon" href="icon.png">
<meta name="description" content="Silicon Launcher - Eaglercraft Clients selection" />
<meta name="keywords" content="free games online, games, online games, html5 games, chromebook games, games, free games">
<meta property="og:title" content="Silicon Launcher - Clients" />
<meta property="og:image" content="icon.png" />
<meta property="og:description" content="Silicon Launcher - Choose your Eaglercraft client" />
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-261780635-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-261780635-1');
</script>
<script>
document.addEventListener('keydown', function(e) {
// Press ` (backtick) to quickly close tab
if(e.key === '`') {
// Save any necessary data here if needed
window.close();
// Fallback if window.close() is blocked
window.location.replace('about:blank');
}
});
</script>
</head>
<body>
<div id="loading"></div>
<!-- Navigation Bar -->
<nav class="navbar">
<a href="index.html" class="logo">SILICON LAUNCHER</a>
</nav>
<!-- Back Button -->
<div class="back-nav">
<a href="index.html" class="back-button">← Back</a>
</div>
<!-- Main Content -->
<div class="main-content">
<div class="container">
<h1 class="section-title fade-in">Eaglercraft Clients</h1>
<div class="game-grid">
<!-- Eaglercraft Clients -->
<div class="game-card fade-in">
<div class="game-info">
<h3 class="game-title">1.8.8 Clients</h3>
<p class="game-description">Play Minecraft 1.8.8 in your browser with various client versions</p>
<a href="1.8.8.html" class="play-button">Play Now</a>
</div>
</div>
<!-- Other Versions -->
<div class="game-card fade-in">
<div class="game-info">
<h3 class="game-title">Other Versions</h3>
<p class="game-description">Try different versions of Eaglercraft</p>
<a href="other-versions.html" class="play-button">Browse Versions</a>
</div>
</div>
<!-- Texture Packs -->
<div class="game-card fade-in">
<div class="game-info">
<h3 class="game-title">Texture Packs</h3>
<p class="game-description">Customize your game with different texture packs</p>
<a href="texture-packs.html" class="play-button">Browse Packs</a>
</div>
</div>
<!-- !@%$ Clients -->
<div class="game-card fade-in">
<div class="game-info">
<h3 class="game-title">!@%$ Clients</h3>
<p class="game-description">Special clients requiring verification</p>
<a href="verify-clients.html" class="play-button">Access</a>
</div>
</div>
</div>
</div>
</div>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.bundle.min.js"></script>
<script>
$(window).on('load', function() {
$('#loading').fadeOut(500);
});
</script>
<script defer src="/_vercel/insights/script.js"></script>
<script src="splash.js"></script>
<script>
splash.onload = myFunction;
</script>
<script>
window.onload = function () {
//display loader on page load
$('#loading').fadeOut();
}
setTimeout(function () {
//display loader on page load
$('#loading').fadeOut();
}, 12 * 1000);
</script>
<script src="darkmode.js"></script>
</body>
</html>