-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
45 lines (44 loc) · 1.35 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>eClient Online</title>
<link rel="stylesheet" href="style.css">
<link rel="icon" href="icon.ico">
</head>
<body>
<center>
<div class=content>
<div class="logo">
<img style=float:left;margin-top:-55px; src="latest.png" alt="logo" width="50px" height="50px">
<h1 style="float:left;margin-top:-50px;margin-left:55px;">eClient</h1>
<p style="float:left;margin-top:-50px;color:grey;margin-left:5px;">Online</p>
</div>
<div style="margin-top:150px;" class="box" onclick="eighteen()">
<h2>Minecraft 1.18</h2>
<p>Launches Minecraft 1.18</p>
</div>
<div class="box" onclick="five()">
<h2>Minecraft 1.5.2</h2>
<p>Launches Minecraft 1.5.2</p>
</div>
<div class="box" onclick="eight()">
<h2>Minecraft 1.8.8</h2>
<p>Launches Minecraft 1.8.8</p>
</div>
</div>
</center>
</body>
<script>
function eighteen() {
window.location.href = "1.18/index.html";
}
function five() {
window.location.href = "1.5.2/index.html";
}
function eight() {
window.location.href = "1.8/index.html";
}
</script>
</html>