-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patherror404.html
More file actions
executable file
·33 lines (31 loc) · 893 Bytes
/
error404.html
File metadata and controls
executable file
·33 lines (31 loc) · 893 Bytes
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
<!doctype html>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<html>
<head>
<!-- THEMING SCRIPT -->
<script src="js/sitewide-theme-manager.js" defer></script>
<!-- Use style.css as our default stylesheet -->
<link rel="stylesheet" type="text/css" href="styles/style.css" />
<link rel="stylesheet" type="text/css" href="styles/projects.css" />
<!-- Set the page title to appear in the browser tab -->
<title>Error 404 - hw2007.net</title>
<link rel="icon" href="assets/favicon.png" type="image/x-icon" />
</head>
<body>
<p class="back">
❌ Error 404
</p>
<!-- Title area -->
<p class="header">Oops!<p>
<p><i>that page doesn't seem to exist, sorry!</i></p>
<!-- Links -->
<div
id="container"
class="grid"
>
<a href="/" class="fancy-link" style="width: 200px;">
<b>🏠 Go Home?</b>
</a>
</div>
</body>
</html>