-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathabout.html
More file actions
52 lines (46 loc) · 2.04 KB
/
about.html
File metadata and controls
52 lines (46 loc) · 2.04 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="CSS.css">
<title>G@ming Hub - About</title>
<link rel="icon" href="icon.png" type="image/x-icon">
<script src="script.js"></script>
</head>
<body>
<div class="sidebar">
<h2 class="sidebar-title">G@ming Hub</h2>
<ul>
<li><a href="index.html"><i class="fa fa-home"></i> Home</a></li>
<li class="active"><a href="about.html"><i class="fa fa-info-circle"></i> About</a></li>
<li><a href="cs.html"><i class="fa fa-clock-o"></i> Coming Soon</a></li>
<li><a href="settings.html"><i class="fa fa-cog"></i> Settings</a></li>
<li><a href="reposongit.html"><i class="fa fa-github"></i> Repos (GH)</a></li>
</ul>
</div>
<div class="with-sidebar">
<main>
<header class="fade-in-up">
<h1>About This Hub</h1>
<p>Information about the games and technology we use.</p>
</header>
<article class="fade-in-up" style="animation-delay: 0.3s;">
<h2>Information</h2>
<details>
<summary class="dropdown" style="font-weight: 600; cursor: pointer; font-size: 1.1rem;">About Eaglercraft</summary>
<p style="margin-top: 1rem;">
Eaglercraft is a client that allows you to play Minecraft in your browser using WebAssembly (WASM) or JavaScript (JS). It aims to provide a seamless gaming experience on various devices, including low-end ones.
<br><br>
<b>Versions we have:</b> 1.8.8, 1.12, A1.2.6, b1.3, b1.7.3 and Indev.
</p>
</details>
</article>
</main>
</div>
</body>
</html>