forked from owowowowowowowoo/3kho-backup
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
49 lines (49 loc) · 2.19 KB
/
404.html
File metadata and controls
49 lines (49 loc) · 2.19 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
<!DOCTYPE html>
<html>
<head>
<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=Roboto&display=swap" rel="stylesheet">
<script async src="https://www.googletagmanager.com/gtag/js?id=G-98DP5VKS42"></script>
<style>
body {
font-family: 'Roboto', sans-serif;
color: #ffffff;
background-color: #1f1f1f;
}
</style>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", "G-98DP5VKS42");
</script>
<title>404 Error | 3kh0</title>
</head>
<body onload="check();">
<h1>404 Error</h1>
<p>
The requested URL or file was not found on this server. <br>
That is all we know.<br><br>
If you want to you can go to the <a href="/">homepage</a>.
</p>
<p><b>Not what you expected? <a href="https://github.com/3kh0/3kh0.github.io/issues">Open a issue</a>!</b></p>
<h2>Stats for nerds</h2>
Requested URL: <code id="full"></code><br />
Requested file path: <code id="path"></code><br />
Error code: <code id="error"></code><br />
Host name: <code id="host"></code><br />
Protocol used: <code id="proto"></code><br />
<script>
document.getElementById("full").innerHTML = window.location.href;
document.getElementById("path").innerHTML = window.location.pathname;
document.getElementById("error").innerHTML = "404";
document.getElementById("host").innerHTML = window.location.hostname;
document.getElementById("proto").innerHTML = window.location.protocol;
</script>
<script src="https://code.jquery.com/jquery-2.2.4.min.js"></script>
<script type="application/javascript" src="/js/lib.js"></script>
</body>
</html>