-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
52 lines (47 loc) · 1.96 KB
/
404.html
File metadata and controls
52 lines (47 loc) · 1.96 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="utf-8" />
<title>404 Error | Spotech.dev</title>
<link rel="icon" type="image/png" href="/assets/favicon.png">
<link rel="stylesheet" type="text/css" href="/style.css">
<link rel="stylesheet" type="text/css" href="/navbar.css">
<link href="https://cdn.jsdelivr.net/npm/remixicon@2.5.0/fonts/remixicon.css" rel="stylesheet">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap" rel="stylesheet">
<script src="https://code.jquery.com/jquery-1.10.2.js"></script>
</head>
<script>
$(function () {
$("#navbar").load("/navbar.html");
});
</script>
<body>
<canvas id="spaceMesh" aria-hidden="true"></canvas>
<div id="stuff" class="infobox page-wrap">
<section class="minifull project-row gravity-rect" id="NotFound">
<div class="project-text" style="text-align:center; width:100%;">
<h1 style="font-size:32px;">404: Page not Found</h1>
<p style="max-width:600px; margin: 10px auto;">
The page you're looking for doesn't exist or has been moved.
</p>
<div class="hero-links" style="justify-content:center; margin-top:20px;">
<a class="btn" href="/">
<i class="ri-home-4-fill" style="margin-right:8px;"></i>
Go Home
</a>
</div>
</div>
</section>
</div>
<footer class="footer">
<h3 id="year">Made with Determination • Haniel Mikhaiel, </h3>
</footer>
<script>
document.getElementById("year").textContent += new Date().getFullYear();
</script>
</body>
<script src="/SpaceTime.js"></script>
<div id="navbar"></div>
</html>