-
Notifications
You must be signed in to change notification settings - Fork 4
/
404.html
22 lines (22 loc) · 1.09 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
<!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">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>404 - Page Not Found</title>
</head>
<body>
<div class="error-msg">
<a href="https://dragon-drop-scratch.github.io/html-app"><img width="50%" title="DragonDrop" src="https://dragon-drop-scratch.github.io/html-app/assets/img/dd2.png" /></a>
<h1 style="font-size: 45px; margin-bottom: 2px;">Error 404</h1>
<h3 style="font-size: 27.5px;">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>