-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy path404.html
More file actions
102 lines (90 loc) · 2.42 KB
/
404.html
File metadata and controls
102 lines (90 loc) · 2.42 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Hush 404</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="refresh" content="5; URL=https://myhush.org/">
<style>
@import url("//fonts.googleapis.com/css?family=Poppins:400,700|Roboto:400,700&subset=cyrillic,cyrillic-ext,devanagari,greek,greek-ext,latin-ext,vietnamese");
body {
width: 100%;
margin: 0 auto;
background-color: black;
}
section {
padding: 20px;
}
img {
display: block;
margin: 0 auto;
max-width: 100%;
padding-top: 1em;
}
h1 {
font-family: 'Poppins', sans-serif;
color: #FFFFFF;
font-size: 4em;
font-weight: 400;
margin: 0;
line-height: 1.5;
}
h2 {
font-family: 'Poppins', sans-serif;
color: #FFFFFF;
font-size: 2em;
font-weight: 200;
margin: 0;
line-height: 1.5;
}
h3 {
font-family: 'Poppins', sans-serif;
color: #FFFFFF;
font-size: 1sem;
font-weight: 100;
margin: 0;
line-height: 1.5;
}
.bground {
min-height: 100vh;
text-align: center;
background-image: url("images/black_diamonds.png");
background-repeat: no-repeat;
background-position: center top;
background-size: cover;
padding-top: 0em;
}
a {
font-family: 'Poppins', sans-serif;
color: #FFFFFF;
font-size: 1em;
font-weight: 100;
margin: 0;
line-height: 1.5;
}
</style>
</head>
<body>
<main>
<section class="bground">
<div id="404-image"></div>
<div style="text-align: center">
<h1>404</h1>
<h2>Page not found</h2>
<h3>Sorry, but the page you were trying to view does not exist.</h3>
<br>
<br>
<br>
<a href="https://myhush.org">Return to home</a>
</div>
</section>
</main>
</body>
<script src="//code.jquery.com/jquery-3.2.1.min.js" integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4=" crossorigin="anonymous"></script>
<script>window.jQuery || document.write('<script src="js/jquery-3.2.1.min.js"><\/script>')</script>
<script>
var images = ['404-1.png', '404-2.png', '404-3.png', '404-4.png', '404-5.png', '404-6.png', '404-7.png'];
$('<img src="images/404/' + images[Math.floor(Math.random() * images.length)] + '">').appendTo('#404-image');
</script>
</html>