-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.html
25 lines (20 loc) · 892 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<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 Page not found</title>
</head>
<body style="text-align: center; background-color: black; color: white;">
<h1 style="font-size: 80px;">404</h1>
<p id="demo" style="font-size: xx-large;"></p>
<button onclick="history.back()">Go Back</button>
<script>
document.getElementById("demo").innerHTML =
"The file: <b>" + window.location.href + "</b> could not be found.";
</script>
<p>If you believe this is in error feel free to contact me at <b style="font-size: 20px;">support@tconnor.co.uk<b></p>
<p>While your here have an image of a random Kitten<br><br><img src="https://placekitten.com/1280/720"></img></p>
</body>
</html>