-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.html
More file actions
98 lines (97 loc) · 3.14 KB
/
index.html
File metadata and controls
98 lines (97 loc) · 3.14 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
<!doctype html>
<html lang="en" data-theme="dark">
<head>
<script defer src="script.js"></script>
<link rel="stylesheet" href="style.css" />
<link rel="icon" href="images/icon.png" />
<link
href="https://fonts.bunny.net/css2?family=Fira+Sans&display=swap"
rel="stylesheet"
/>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>AxolotlClient</title>
</head>
<body>
<div class="navbar">
<div class="navbar-left">
<a href="https://axolotlclient.com"
><img src="images/icon.png" alt="Logo"
/></a>
<a class="text" href="https://modrinth.com/mod/axolotlclient"
>Modrinth</a
>
<a class="text" href="https://codeberg.org/AxolotlClient/">Codeberg</a>
<a class="text" href="https://github.com/AxolotlClient/">GitHub</a>
<a class="text" href="https://discord.gg/WyMjeX3vka">Discord</a>
</div>
<div class="navbar-right">
<img src="images/moon.svg" alt="" id="switcher" />
</div>
</div>
<div class="main">
<div class="buttons">
<img src="images/icon.png" alt="AxolotlClient logo" />
<h1>AxolotlClient</h1>
<h3>A Free & Open-source Minecraft Client</h3>
<div class="row">
<a href="https://modrinth.com/mod/axolotlclient/versions#all-versions"
><button class="tooltip">Download</button></a
>
<a href="https://modrinth.com/mod/axolotlclient/gallery"
><button>Screenshots</button></a
>
</div>
</div>
</div>
<div class="next__slide">
<h2>Why <em>AxolotlClient?</em></h2>
<div class="reasons">
<div class="reason">
<img
class="icon"
src="images/github.svg"
width="70px"
height="70px"
/>
<h2>Open-Source</h2>
<p>
The client is completely open-source for maximum<br />
user comfort. All code is licensed under Free software licenses to
allow user modifications.
</p>
</div>
<div class="reason">
<img src="images/modrinth.svg" height="70px" color="#00aa00" />
<h2>Customizable</h2>
<p>
You can add your own mods to create <b>your own</b> Client.
<br />
Create your own experience by downloading AxolotlClient now!
</p>
</div>
<div class="reason">
<img src="images/fabric.png" height="70px" />
<h2>
Built on modern<br />
Mod Loaders
</h2>
<p>
Building upon the Fabric platform allows us to quickly adjust to new
changes and improvements in the modding space.
</p>
</div>
</div>
</div>
<div class="about">
<h5 class="warning">
NOT AN OFFICIAL MINECRAFT PRODUCT. NOT APPROVED BY OR ASSOCIATED WITH
MOJANG.
</h5>
<p>
<a href="https://axolotlclient.com/terms">Terms</a>
</p>
</div>
</body>
</html>