-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
55 lines (55 loc) · 1.65 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
<!DOCTYPE html>
<html>
<head>
<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>Lunar Eclipse</title>
<link href="style.css" rel="stylesheet" />
<script
src="https://kit.fontawesome.com/1abfab8baa.js"
crossorigin="anonymous"
></script>
<link
rel="shortcut icon"
href="img/lunar.png"
type="image/png"
class="favicon"
/>
</head>
<body>
<nav class="nav" id="nav">
<a href="index.html" class="active">Home</a>
<a href="prxy.html">Prxy</a>
<a href="gxmes.html">Gxmes</a>
<a href="settings.html">Settings</a>
<div class="right">
<button class="panic">Panic Switch [P]</button>
<p id="time">loading...</p>
</div>
</nav>
<div class="line"></div>
<div class="content">
<div class="title">
<i class="fa-solid fa-moon"></i><br large />
<div class="space"></div>
luNAR eclipse
</div>
<h1 class="center mtop mm">Welcome</h1>
<div class="space"></div>
<h1 class="mleft space">Ready?</h1>
<button class="mmleft space" onclick="redir('prxy.html')">Prxy</button
><br />
<button class="mmleft space" onclick="redir('gxmes.html')">Gxmes</button>
<h2 class="mleft space">Customize as you wish...</h2>
<button class="mmleft space" onclick="redir('settings.html')">
Settings
</button>
<h2 class="mleft">Hide your history...</h2>
<h4 class="mleft space">Cloaking</h1>
<button class="mmleft" onclick="cloak()">Cloak in about:blank</button>
</div>
<script src="https://util.tinymooshmallow.repl.co/util.js"></script>
<script src="script.js"></script>
</body>
</html>