This repository has been archived by the owner on Jan 25, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 78
/
index.html
151 lines (130 loc) · 3.99 KB
/
index.html
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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>EaglerCraftX</title>
<link rel="icon" type="image/x-icon" href="icon.jpeg">
<style>
body {
font-family: 'Arial', sans-serif;
background-color: #f4f4f4;
margin: 0;
padding: 0;
text-align: center;
display: flex;
flex-direction: column;
min-height: 100vh;
}
h1 {
color: #333;
}
h2,
p {
color: #555;
}
button,
.dropdown-btn {
background-color: #4caf50;
color: white;
padding: 10px 20px;
font-size: 16px;
cursor: pointer;
border: none;
border-radius: 5px;
margin: 10px auto;
text-decoration: none;
display: inline-block;
max-width: 200px;
}
.source-btn {
background-color: #333333;
color: white;
padding: 10px 20px;
font-size: 16px;
cursor: pointer;
border: none;
border-radius: 5px;
margin: 10px auto;
text-decoration: none;
display: inline-block;
max-width: 200px;
}
button:hover,
.dropdown-btn:hover {
background-color: #45a049;
}
.source-btn:hover {
background-color: #000000;
}
.dropdown-content {
display: none;
position: absolute;
background-color: #f9f9f9;
min-width: 160px;
box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
z-index: 1;
}
.dropdown-content a {
color: black;
padding: 12px 16px;
text-decoration: none;
display: block;
}
.dropdown-content a:hover {
background-color: #ddd;
}
.dropdown-btn:hover .dropdown-content {
display: block;
}
.pick-client {
color: #555;
}
.line {
width: 50%;
border-top: 1px solid #888;
margin: 10px auto;
}
.version-text {
margin: 10px 0;
color: #555;
}
.subtitle {
color: grey;
font-size: 14px;
margin-bottom: 5px;
}
.footer {
margin-top: auto;
background-color: #ddd;
padding: 20px;
width: 100%;
}
</style>
</head>
<body>
<h1>Welcome to EaglerCraftX</h1>
<h1>This link will no longer be updated, get new links here: https://github.com/eaglercraftx1-8/eaglercraftx1-8.github.io/blob/main/README.md#links</h1>
<p>These clients might be outdated.</p>
<h2 class="pick-client">Pick a Client:</h2>
<p class="version-text">Version 1.8</p>
<p class="subtitle">1.8 only supports multiplayer</p>
<a href="/1.8/main1.8.9/index.html"><button>Main 1.8.9 Client</button></a>
<a href="/1.8/main1.8.8.html"><button>Main 1.8.8 Client</button></a>
<a href="/1.8/resent.html"><button>Resent Client</button></a>
<p class="version-text">Version 1.5.2</p>
<p class="subtitle">1.5.2 supports singleplayer and multiplayer</p>
<a href="/1.5.2/main1.5.2.html"><button>Main Client</button></a>
<div class="dropdown-btn">
Precision Client
<div class="dropdown-content">
<a href="/1.5.2/precisionbeta2/index.html">Precision Beta 2 Client</a>
<a href="/1.5.2/PrecisionBeta.html">Precision Beta Client</a>
</div>
</div>
<div class="footer">
<p>I am not affiliated with EaglerCraft, Eagtek, Microsoft, or Mojang. I solely host these sites.</p>
<a href="https://github.com/PrestonT500/EaglerCraftX-1.8" class="source-btn" target="_blank">Github Repository</a>
</div>
</body>
</html>