-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.html
32 lines (31 loc) · 1.01 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
<!DOCTYPE html>
<html lang="en">
<head id="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>404 - fullpwnmedia</title>
<meta name="apple-mobile-web-app-capable" content="yes">
<link rel="stylesheet" href="https://use.typekit.net/dlr1bba.css">
<link rel="stylesheet" href="styles.css">
</head>
<body id="body">
<div class="main" id="main">
<h1>404</h1>
<h3>I searched everywhere for what you're looking for (I didn't) and couldn't find it.</h3>
<h2>What would you like to do?</h2>
<a onClick="openinwayback()">Make a search on Wayback Machine</a>
<br>
<a onClick="history.back()">Return</a>
</div>
<script>
if (window.location.pathname === "/halfpwn") {
document.getElementById("head").innerHTML="";
document.getElementById("body").innerHTML="what.";
}
function openinwayback() {
location.replace("https://web.archive.org/" + document.URL)
}
</script>
</body>
</html>