-
Notifications
You must be signed in to change notification settings - Fork 0
/
404.html
executable file
·21 lines (21 loc) · 962 Bytes
/
404.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="https://dragon-drop-scratch.github.io/html-app/assets/css/main.css">
<link rel="stylesheet" href="https://dragon-drop-scratch.github.io/html-app/assets/css/error.css">
<title>404 - Page Not Found</title>
</head>
<body>
<div class="error-msg">
<a href="https://dragon-drop-scratch.github.io"><img width="200" title="DragonDrop" src="https://dragon-drop-scratch.github.io/html-app/assets/img/dd2.png" /></a>
<h1>Error 404</h1>
<h3>We can't find what you're looking for!</h3>
<p style="color: gray;" id="url">The requested page {url} was not found</p>
<script>
document.getElementById("url").innerHTML = "The requested page " + document.location.pathname + " was not found";
</script>
<hr>
<p style="color: gray;">The URL may be misspelled or the page you're looking for is no longer available.</p>
</div>
</body>
</html>