forked from Rabrennie/anything.js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
30 lines (29 loc) · 683 Bytes
/
404.html
File metadata and controls
30 lines (29 loc) · 683 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>404</title>
<script src="dist/anything.min.js" charset="utf-8"></script>
<style media="screen">
body, html {
overflow: hidden;
}
.fourohfour {
text-align: center;
margin-top: 50%;
transform: translateY(-100%);
font-size: 30px;
}
</style>
</head>
<body>
<div class="fourohfour">
Can't find Anything :(
<br>
<a href="http://anythingjs.io">AnythingJS</a>
</div>
<script type="text/javascript">
window.location = "https://github.com/Rabrennie/anything.js/issues/404";
</script>
</body>
</html>