-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
37 lines (37 loc) · 1.23 KB
/
404.html
File metadata and controls
37 lines (37 loc) · 1.23 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
<!DOCTYPE html>
<html>
<head>
<title>Not Found</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1" />
<style>
body { text-align: center; font-family: Tahoma, Arial, sans-serif; }
.credits {text-align: right;}
.dialog {display: inline-block; padding: 4px 4px; border: 1px solid black; border-radius: 10px; background: silver; max-width: 100%;}
.dialogImage {text-align: left; float: left; padding: 50px;}
</style>
</head>
<body>
<div id="main" class="dialog">
<img src="/pmdm/caution.png" class="dialogImage" width="50px">
<h1>404 Not Found</h1>
<p>The page that you are looking is not available at this time.</p>
<br>
<p><b>Reasons:</b></p>
<ol>
<li>Check <span id="isCorrectURL"></span> if there's a typo in this URL.</li>
<li>The resource you are looking is deleted or is no longer available.</li>
<li>The page has been permanently moved.</li>
<li>Copyright or fanbase removal request.</li>
</ol>
<br>
<a href="/pmdm/">Back to Home</a>
<br><br>
<p class="credits">All rights reserved. OnuteWORLD Server Ltd. 2019-2023.</p>
</div>
<script>
// ONUTEWORLD.TK LTD 2023/05/20
document.getElementById("isCorrectURL").innerHTML = window.location.pathname;
</script>
</body>
</html>