-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path404.html
More file actions
53 lines (48 loc) · 1.39 KB
/
404.html
File metadata and controls
53 lines (48 loc) · 1.39 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
50
51
52
53
<!doctype html>
<html lang="en">
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-2E561F2422"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-2E561F2422');
</script>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Error 404</title>
<link rel="preconnect" href="https://fonts.gstatic.com">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Rubik:wght@300;400&display=swap">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@400;500&display=swap">
<style type="text/css">
* {
font-family: rubik, sans-serif;
text-align: center;
}
body {
margin: 50px 10px;
}
h3 {
font-weight: normal;
}
h1 {
font-size: 300%;
font-family: 'roboto slab', serif;
}
a,
a:hover {
color: #E5007E;
text-decoration: none;
}
a:hover {
border-bottom: 1px dotted #E5007E;
}
</style>
</head>
<body>
<h1>Error 404: Page Not Found</h1>
<p>You can <a href="https://robson.plus">visit my site</a> or just look at all the dirt on your screen:</p>
</body>
</html>