-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
80 lines (70 loc) · 2.15 KB
/
404.html
File metadata and controls
80 lines (70 loc) · 2.15 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<!doctype html>
<html class="no-js" lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Page Not Found</title>
<link rel="stylesheet" href="css/unsemantic-grid-responsive-tablet.css">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css">
<meta name="description" content="Page not found">
<meta name="theme-color" content="#fafafa">
<style>
.error-container {
text-align: center;
margin: 5em auto;
max-width: 600px;
}
.error-code {
font-size: 6em;
margin-bottom: 0.2em;
font-weight: bold;
}
.error-message {
font-size: 1.5em;
margin-bottom: 1.5em;
}
.home-button {
display: inline-block;
padding: 10px 20px;
background-color: #007bff;
color: white;
text-decoration: none;
border-radius: 5px;
transition: background-color 0.3s;
}
.home-button:hover {
background-color: #0056b3;
}
</style>
</head>
<body>
<div class="grid-container">
<div class="theme-switch">
<i class="fas fa-sun"></i>
<label class="switch">
<input type="checkbox" checked>
<span class="slider round"></span>
</label>
<i class="fas fa-moon"></i>
</div>
<div class="error-container">
<div class="error-code">404</div>
<div class="error-message">Oops! The page you're looking for doesn't exist.</div>
<p>It seems you've ventured into uncharted territory. The page you're looking for might have been moved, deleted, or never existed in the first place.</p>
<div style="margin-top: 2em;">
<a href="index.html" class="home-button">
<i class="fas fa-home"></i> Back to Home
</a>
</div>
</div>
<footer class="grid-95">
<div class="grid-100">
© 2026 Wenyang
</div>
</footer>
</div>
<script src="js/app.js"></script>
</body>
</html>
<!-- IE needs 512+ bytes: https://docs.microsoft.com/archive/blogs/ieinternals/friendly-http-error-pages -->