-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path404.html
More file actions
42 lines (38 loc) · 811 Bytes
/
404.html
File metadata and controls
42 lines (38 loc) · 811 Bytes
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
<script>
window.location.href = window.location.origin
</script>
<html>
<head>
<title>404 Page Not Found</title>
<style>
a{color: #ff48d7;}
</style>
</head>
<body
style="
display: flex;
align-items: center;
justify-content: center;
padding: 0;
margin: 0;
width: 100%;
height: 100vh;
background-color: #0f002b;
color: #f4beff;
"
>
<div
style="
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
width: 100%;
color: #f4beff;
">
<h1>404 Page Not Found</h1>
<code style="font-size: 1.5em;">You will be redirected. if not, <a href="/">click here</a>.</code>
<h5><a href="https://telegram.me/bots_universe"><kbd>© Botsuniverse</kbd></a></h5>
</div>
</body>
</html>