-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
28 lines (28 loc) · 2.04 KB
/
404.html
File metadata and controls
28 lines (28 loc) · 2.04 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
<!DOCTYPE html>
<html>
<head>
<title>404 Error | MasterOfTheTiger</title>
<link href="404/style.css" rel="stylesheet" />
</head>
<body>
<div class="error">404</div>
<p>Oh no! The page <span id="page"></span> does not exist. Sorry about that. If you clicked a link that lead you here, the link could have contained a typo, or I moved/deleted the page. If you entered it in manually, the same problem could have occurred. Either you can look through the links here, or you can click your browser's back button to go back to what you were doing. Here are some places you can look for pages that are available now. </p>
<ul>
<li><a href="http://mtiger.xyz">Main website</a></li>
<li><a href="http://blog.mtiger.xyz">My blog</a></li>
<li><a href="https://github.com/MasterOfTheTiger">My GitHub</a></li>
</ul>
<p>Here are some of my projects as well. Just in case you were trying to go there.</p>
<ul>
<li><a href="http://heb12.github.io>Heb12</a></li>
<li><a href="/MinecraftCalc">Minecraft Construction Calculator</a> or you can see it <a href="https://github.com/masterofthetiger/MinecraftCC">on GitHub</a>.</li>
<li><a href="https://addons.mozilla.org/en-US/firefox/addon/astronomy-picture">Astronomy Picture of the Day Firefox Extension</a> or you can see it <a href="https://github.com/masterofthetiger/apod-extension">on GitHub</a>.</li>
<li><a href="/Bible-Compare">Bible Compare</a> or you can see it <a href="https://github.com/masterofthetiger/BibleCompare">on GitHub</a>.</li>
<li><a href="/learninglinux">Learning Linux</a> or you can see it <a href="https://github.com/masterofthetiger/learninglinux">on GitHub</a>.</li>
</ul>
<p>If you click one of those links and then it sends you to this page again, please report it to me <a href="https://github.com/MasterOfTheTiger/masterofthetiger.github.io/issues/new">on GitHub</a> and I will see what the problem is.</p>
<script>
document.getElementById('page').innerHTML = window.location.href;
</script>
</body>
</html>