This repository has been archived by the owner on Oct 14, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
76 lines (76 loc) · 3.57 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="https://kit.fontawesome.com/82fb29efa6.js" crossorigin="anonymous"></script>
<title>eClient - An Open-Source Minecraft Launcher</title>
<link rel="stylesheet" href="style.css">
<link rel="icon" href="mc.ico">
</head>
<body>
<nav class="topbar">
<ul>
<li><a href="index.html" class="active">Home</a></li>
<li><a href="lite.html">Lite</a></li>
<li><a href="https://online.earthsoft.me">Try Minecraft</a></li>
<li><a href="download.html">Download</a></li>
</ul>
</nav>
<h1>eClient</h1>
<p>Introducing eClient, a Minecraft launcher with tons of features.</p>
<button onclick="download()" class="download">Download</button>
<button style="margin-left:20px;" onclick="git()" class="download">GitHub</button>
<img class="idl" src="https://user-images.githubusercontent.com/67716965/260288489-08c52dcf-a60a-4e62-8350-7257f2cdcca4.png" width="760px" height="440px"/>
<center>
<h1 style="margin-top:400px;margin-left:0px;">Screenshots</h1>
<div class="box">
<img src="https://user-images.githubusercontent.com/67716965/260300621-4fce9a7d-ad96-4dcf-8850-f218ee10f884.png" width="500px" height="300px"/>
<p>Updater</p>
</div>
<div class="box">
<img src="https://user-images.githubusercontent.com/67716965/260300635-fd9a1fbe-ebe2-4077-8cb6-81ef3752e69d.png" width="500px" height="300px"/>
<p>Home</p>
</div>
<div class="box">
<img src="https://user-images.githubusercontent.com/67716965/260300647-1ff0dd9f-f31b-4f40-9b28-a803b5dcf073.png" width="500px" height="300px"/>
<p>Installations</p>
</div>
<div class="box">
<img src="https://user-images.githubusercontent.com/67716965/260300654-4b6bffea-012f-4459-ae0c-9f9adf4de4a1.png" width="500px" height="300px"/>
<p>Settings</p>
</div>
<div class="box">
<img src="https://user-images.githubusercontent.com/67716965/260300662-1b96cf30-312b-4039-8201-0cc3c4b6eead.png" width="500px" height="300px"/>
<p>Additional Settings</p>
</div>
<div class="box">
<img src="https://user-images.githubusercontent.com/67716965/260300672-00f40c86-be37-416d-9342-6133f88317a4.png" width="500px" height="300px"/>
<p>Accounts</p>
</div>
<div class="box">
<img src="https://user-images.githubusercontent.com/67716965/260300677-5e038d32-96cd-4e75-9c46-0b21a4c99638.png" width="500px" height="300px"/>
<p>Help</p>
</div>
<div class="box" style="height:320px;">
<img src="https://user-images.githubusercontent.com/67716965/260300693-79555e54-3bd4-41fa-b70a-ecc4870fc13e.png" width="500px" height="220px"/>
<p>Mod Installer</p>
</div>
<div class="box" style="height:635px;">
<img src="https://user-images.githubusercontent.com/67716965/260300728-7fd0ae69-fce5-4563-9933-6b33e9715325.png" width="300px" height="540px"/>
<p>Mod Installer - List of Mods</p>
</div>
</center>
<footer>
<p>Made by <a style="color:white;" href="https://vpun215.vercel.app">v-pun215</a></p>
</footer>
</body>
<script>
function download() {
window.location.href = "/download.html";
}
function git() {
window.location.href = "https://github.com/v-pun215/eClient";
}
</script>
</html>