-
-
Notifications
You must be signed in to change notification settings - Fork 68
/
404.html
78 lines (75 loc) · 3.87 KB
/
404.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
77
78
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="The better unblocked games website." />
<meta name="keywords" content="front-end web developer, unblocked, games, google sites, unblocked games mom, ublocked, code, coding, programmer, development, javascript, jquery, bootstrap, sass, less, git" />
<meta name="author" content="3kh0" />
<meta content="3kh0" property="og:title" />
<meta content="The better unblocked games website." property="og:description" />
<meta content="/images/logo.png" property="og:image" />
<title>Error | 3kh0</title>
<link href="/images/logo.png" rel="icon" />
<link href="/css/index.css" rel="stylesheet" />
<script src="https://cdn.jsdelivr.net/npm/@widgetbot/crate@3" async defer></script>
</head>
<body>
<div class="navbar">
<div class="navitems">
<img onclick="location.href='https://www.youtube.com/watch?v=dQw4w9WgXcQ'" src="/images/logo.png" class="navlogo" draggable="false" />
<a href="/"><div class="navitem">Home</div></a>
<a href="/projects"><div class="navitem">Games</div></a>
<a href="/extras"><div class="navitem">Extras</div></a>
<a href="/blog"><div class="navitem">Blog</div></a>
<a href="/settings"><div class="navitem">Settings</div></a>
<a href="/about"><div class="navitem">About</div></a>
</div>
</div>
<div class="title">404 Error</div>
<div class="message">This page does not exist!</div>
<center>
<button class="button" onclick="statsForNerds()">Stats for nerds</button>
</center>
<div id="sfn" style="display: none;" class="message">
Please make a issue about this happening on the <a href="https://github.com/3kh0/3kh0.github.io/issues">Github issue tracker</a> Requested URL: <span id="full">Fetching...</span><br />
Referrer: <span id="ref">Fetching...</span><br />
Title: <span id="title">Fetching...</span><br />
Screen height: <span id="height">Fetching...</span><br />
Screen width: <span id="width">Fetching...</span><br />
Window height: <span id="winheight">Fetching...</span><br />
Window width: <span id="winwidth">Fetching...</span><br />
Cookies: <span id="cookie">Fetching...</span><br />
User agent: <span id="ua">Fetching...</span><br />
OS platform: <span id="plat">Fetching...</span><br />
Online: <span id="online">Fetching...</span><br />
Error code: 404<br />
</div>
<script>
function statsForNerds() {
var x = document.getElementById("sfn");
if (x.style.display === "none") {
x.style.display = "block";
console.log("[ℹ️] Showing the stats for nerds!");
} else {
x.style.display = "none";
console.log("[ℹ️] Hiding the stats for nerds!");
}
}
document.getElementById("full").innerText = window.location.href;
document.getElementById("ref").innerHTML = document.referrer;
document.getElementById("title").innerText = document.title;
document.getElementById("height").innerHTML = screen.height + "px";
document.getElementById("width").innerHTML = screen.width + "px";
document.getElementById("winheight").innerHTML = window.innerHeight + "px";
document.getElementById("winwidth").innerHTML = window.innerWidth + "px";
document.getElementById("cookie").innerText = navigator.cookieEnabled;
document.getElementById("ua").innerHTML = navigator.userAgent;
document.getElementById("plat").innerHTML = navigator.platform;
document.getElementById("online").innerHTML = navigator.onLine;
</script>
<footer>© 3kh0 2023</footer>
<script src="/js/index.js"></script>
<script src="https://polyfill.io/v3/polyfill.min.js?features=default"></script>
</body>
</html>