-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy path404.html
40 lines (36 loc) · 1.42 KB
/
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
39
40
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html lang="en">
<head>
<title>404</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0">
<meta name="description" content="Page not found.">
<!-- Site is hosted on the root directory -->
<link rel="stylesheet" href="/styles/global.css">
<link rel="stylesheet" href="/styles/404.css">
<script src="/scripts/global.js" type="text/javascript"></script>
<script src="/scripts/404.js" type="text/javascript"></script>
<!-- Site is hosted on a subdirectory -->
<link rel="stylesheet" href="/3ds-web-stuff/styles/global.css">
<link rel="stylesheet" href="/3ds-web-stuff/styles/404.css">
<script src="/3ds-web-stuff/scripts/global.js" type="text/javascript"></script>
<script src="/3ds-web-stuff/scripts/404.js" type="text/javascript"></script>
</head>
<body>
<div id="screens">
<div id="top-screen">
<div id="main-texts">
<h1>404</h1>
<p>Page not found!</p>
</div>
</div>
<div id="bottom-screen">
<div>
<p>Maybe you made a typo or this page was moved. ¯\_(ツ)_/¯</p>
<a href="/" id="back">Go back to the home page</a>
</div>
</div>
</div>
</body>
</html>