-
Notifications
You must be signed in to change notification settings - Fork 117
Expand file tree
/
Copy pathdisclaimer.html
More file actions
61 lines (61 loc) · 2.83 KB
/
disclaimer.html
File metadata and controls
61 lines (61 loc) · 2.83 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Disclaimer</title>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width" />
<link rel="stylesheet" href="styles.css" />
<!-- Google analytics tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-Q919W0VJ1S"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-Q919W0VJ1S');
</script>
</head>
<body>
<nav>
<button type="button" class="nav-btn" onclick="location.href='/start.html'">Home</button>
<button type="button" class="nav-btn" onclick="location.href='/select.html'">Games</button>
<button type="button" class="nav-btn" onclick="location.href='/tools.html'">Tools</button>
<button type="button" class="nav-btn" onclick="location.href='/settings.html'">Settings</button>
<button type="button" class="nav-btn" aria-current="page" onclick="location.href='/disclaimer.html'">Disclaimer</button>
</nav>
<div id="games">
<main>
<h1>Disclaimer</h1>
<p>I, DotLYHiyou, owner and sole maintainer of Zenithub, am not responsible for any trouble you have gotten yourself into using my site.</p>
<p>Your choice to use my site in whatever situation it was inappropriate is merely self-conscious.</p>
<h2>As for teachers who caught their students,</h2>
<p>I am not in the wrong for giving this site and all related materials for easy access to people like your student.</p>
<p>I, despite what it seems most of the time, dispise kiddos who decide to play games while not doing work. </p>
<p>Its best you give them a moderate punishment, such as taking away their device, and maybe talking to their parents.</p>
<p>I wouldn't go too far in the punishment, unless they are doing repeat offenses. Then I suggest just doing what you see fit.</p>
<h1>USERS. YOU HAVE BEEN WARNED.</h1>
</main>
</div>
</body>
<script>
// Tab cloaker script for all pages except search
(function() {
const value = localStorage.getItem('tabCloaker') || 'default';
const favicon = document.querySelector("link[rel~='icon']") || (() => {
const link = document.createElement('link');
link.rel = 'icon';
document.head.appendChild(link);
return link;
})();
if (value === 'google') {
document.title = 'Google';
favicon.href = 'https://www.google.com/favicon.ico';
} else if (value === 'vocab') {
document.title = 'My Learning | Vocabulary.com';
favicon.href = 'https://www.vocabulary.com/favicon.ico';
} else {
document.title = 'Disclaimer';
favicon.href = '/favicon.ico';
}
})();
</script>
</html>