-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.html
38 lines (38 loc) · 1022 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
26
27
28
29
30
31
32
33
34
35
36
37
38
<!DOCTYPE html>
<style>
body{
background-color: rgb(0, 0, 0);
font-family: "Courier New";
text-align: center;
font-size: 40px;
color: white;
}
a{
color: white;
text-decoration: none;
font-size: 20px;
}
</style>
<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">
<link rel="icon" href="https://http.cat/404">
<title>404 Not Found</title>
<script async src="https://www.googletagmanager.com/gtag/js?id=G-KZ4YJ36K6F"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-KZ4YJ36K6F');
</script>
</head>
<body>
<div>
404
<p>¯\_(ツ)_/¯</p>
<a href="index.html">go home?</a>
</div>
</body>
</html>